[compiler-rt] r248819 - Add armhf as unstable runtime temporarily

Renato Golin via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 29 11:35:56 PDT 2015


Author: rengolin
Date: Tue Sep 29 13:35:55 2015
New Revision: 248819

URL: http://llvm.org/viewvc/llvm-project?rev=248819&view=rev
Log:
Add armhf as unstable runtime temporarily

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=248819&r1=248818&r2=248819&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/lit.cfg (original)
+++ compiler-rt/trunk/test/asan/lit.cfg Tue Sep 29 13:35:55 2015
@@ -165,8 +165,8 @@ config.substitutions.append( ("%dynamicl
 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' and config.target_arch != 'aarch64':
+# because the test hangs. Adding armhf as we now have two modes.
+if config.target_arch != 'arm' and config.target_arch != 'armhf' 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