[compiler-rt] r300042 - Revert "[lsan] Fix typo in test/lsan/lit.common.cfg"

Renato Golin via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 12 02:45:08 PDT 2017


Author: rengolin
Date: Wed Apr 12 04:45:08 2017
New Revision: 300042

URL: http://llvm.org/viewvc/llvm-project?rev=300042&view=rev
Log:
Revert "[lsan] Fix typo in test/lsan/lit.common.cfg"

This reverts commit r299957. It broke the Thumb bots. We need to make
sure why and maybe stop it from being tested on Thumb environments. But
for now, let's get the bots green.

Modified:
    compiler-rt/trunk/test/lsan/lit.common.cfg

Modified: compiler-rt/trunk/test/lsan/lit.common.cfg
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/lsan/lit.common.cfg?rev=300042&r1=300041&r2=300042&view=diff
==============================================================================
--- compiler-rt/trunk/test/lsan/lit.common.cfg (original)
+++ compiler-rt/trunk/test/lsan/lit.common.cfg Wed Apr 12 04:45:08 2017
@@ -53,7 +53,7 @@ config.substitutions.append( ("%clang_ls
 config.substitutions.append( ("%clangxx_lsan ", build_invocation(clang_lsan_cxxflags)) )
 
 # LeakSanitizer tests are currently supported on x86-64 Linux, arm Linux and mips64 Linux only.
-if config.host_os not in ['Linux'] or config.host_arch not in ['x86_64', 'mips64', 'arm', 'armhf', 'armv7l']:
+if config.host_os not in ['Linux'] or config.host_arch not in ['x86_64', 'mips64', 'arm', 'armhf', armv7l]:
   config.unsupported = True
 
 # Don't support Thumb due to broken fast unwinder




More information about the llvm-commits mailing list