From e73c662b9ea7eeba922eaa9010e221820472e8a9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Micha=C5=82=20G=C3=B3rny?= Date: Fri, 20 Dec 2019 22:08:01 +0100 Subject: [PATCH] [compiler-rt] [test] Disable MPROTECT for XRay tests on NetBSD --- compiler-rt/test/xray/lit.cfg.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/compiler-rt/test/xray/lit.cfg.py b/compiler-rt/test/xray/lit.cfg.py index 782d5a8..1b41ca6 100644 --- a/compiler-rt/test/xray/lit.cfg.py +++ b/compiler-rt/test/xray/lit.cfg.py @@ -61,3 +61,6 @@ elif '64' not in config.host_arch: config.unsupported = True else: config.unsupported = True + +if config.host_os == 'NetBSD': + config.substitutions.insert(0, ('%run', config.netbsd_nomprotect_prefix)) -- 2.7.4