From: Michał Górny Date: Fri, 20 Dec 2019 21:08:01 +0000 (+0100) Subject: [compiler-rt] [test] Disable MPROTECT for XRay tests on NetBSD X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e73c662b9ea7eeba922eaa9010e221820472e8a9;p=platform%2Fupstream%2Fllvm.git [compiler-rt] [test] Disable MPROTECT for XRay tests on NetBSD --- 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))