summaryrefslogtreecommitdiff
path: root/test/lsan
diff options
context:
space:
mode:
authorRenato Golin <renato.golin@linaro.org>2017-04-12 10:12:49 +0000
committerRenato Golin <renato.golin@linaro.org>2017-04-12 10:12:49 +0000
commit4d122dd84d259567e6fe8e4e57291ccfc043bb7a (patch)
tree1478597235cf0c51551e35781ecfbd2e31b646ab /test/lsan
parent8037ab9c5d4900cc73cd19eabac8ba2abf1c7247 (diff)
[LSAN] Disable on ARM/Thumb for good
I didn't pay enough attention to the patch I reverted, now I'm going to hit it with a bigger hammer until we can understand what the problems are. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@300044 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/lsan')
-rw-r--r--test/lsan/lit.common.cfg3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/lsan/lit.common.cfg b/test/lsan/lit.common.cfg
index b0e5e7e0e..202620cdd 100644
--- a/test/lsan/lit.common.cfg
+++ b/test/lsan/lit.common.cfg
@@ -53,7 +53,8 @@ config.substitutions.append( ("%clang_lsan ", build_invocation(clang_lsan_cflags
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]:
+# LSAN breaks on Thumb, so disabling from all ARM targets until we sort this out. PR32636.
+if config.host_os not in ['Linux'] or config.host_arch not in ['x86_64', 'mips64']:
config.unsupported = True
# Don't support Thumb due to broken fast unwinder