[compiler-rt] r244263 - [ASAN/AArch64] Make sure aarch64 is not stable-runtime

Renato Golin via llvm-commits llvm-commits at lists.llvm.org
Thu Aug 6 13:34:51 PDT 2015


Author: rengolin
Date: Thu Aug  6 15:34:51 2015
New Revision: 244263

URL: http://llvm.org/viewvc/llvm-project?rev=244263&view=rev
Log:
[ASAN/AArch64] Make sure aarch64 is not stable-runtime

Modified:
    compiler-rt/trunk/test/asan/lit.cfg

Modified: compiler-rt/trunk/test/asan/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/lit.cfg?rev=244263&r1=244262&r2=244263&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/lit.cfg (original)
+++ compiler-rt/trunk/test/asan/lit.cfg Thu Aug  6 15:34:51 2015
@@ -164,7 +164,7 @@ config.substitutions.append( ("%xdynamic
 
 # 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.




More information about the llvm-commits mailing list