From 5da19695c5fb8daa530c960ae2a68a4f0a4b6b9d Mon Sep 17 00:00:00 2001 From: Renato Golin Date: Thu, 6 Aug 2015 20:34:51 +0000 Subject: [PATCH] [ASAN/AArch64] Make sure aarch64 is not stable-runtime llvm-svn: 244263 --- compiler-rt/test/asan/lit.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/test/asan/lit.cfg b/compiler-rt/test/asan/lit.cfg index 0805dbc..9c4fa4b 100644 --- a/compiler-rt/test/asan/lit.cfg +++ b/compiler-rt/test/asan/lit.cfg @@ -164,7 +164,7 @@ config.substitutions.append( ("%xdynamiclib_namespec", '$(basename %t).dynamic') # Allow tests to use REQUIRES=stable-runtime. For use when you cannot use XFAIL # because the test hangs. -if config.target_arch != 'arm' or config.target_arch != 'aarch64': +if config.target_arch != 'arm' and config.target_arch != 'aarch64': config.available_features.add('stable-runtime') # Turn on leak detection on 64-bit Linux. -- 2.7.4