From baf04f92bcf11bb8adc1200b3537f64a19a4136c Mon Sep 17 00:00:00 2001 From: Renato Golin Date: Wed, 12 Apr 2017 10:12:49 +0000 Subject: [PATCH] [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. llvm-svn: 300044 --- compiler-rt/test/lsan/lit.common.cfg | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/compiler-rt/test/lsan/lit.common.cfg b/compiler-rt/test/lsan/lit.common.cfg index b0e5e7e..202620c 100644 --- a/compiler-rt/test/lsan/lit.common.cfg +++ b/compiler-rt/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 -- 2.7.4