[compiler-rt] r299957 - [lsan] Fix typo in test/lsan/lit.common.cfg
Maxim Ostapenko via llvm-commits
llvm-commits at lists.llvm.org
Tue Apr 11 09:22:19 PDT 2017
Author: chefmax
Date: Tue Apr 11 11:22:19 2017
New Revision: 299957
URL: http://llvm.org/viewvc/llvm-project?rev=299957&view=rev
Log:
[lsan] Fix typo in test/lsan/lit.common.cfg
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=299957&r1=299956&r2=299957&view=diff
==============================================================================
--- compiler-rt/trunk/test/lsan/lit.common.cfg (original)
+++ compiler-rt/trunk/test/lsan/lit.common.cfg Tue Apr 11 11:22:19 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