From 0add37927c8b391a3785eae78be1885637f02310 Mon Sep 17 00:00:00 2001 From: Francis Ricci Date: Mon, 27 Mar 2017 14:06:49 +0000 Subject: [PATCH] Disable use_tls_dynamic on 32-bit linux Summary: This test fails with a false negative due to an unrelated change. Since we expect a number of false negatives on 32-bit lsan, disable this test on linux-i386 and linux-i686. Reviewers: kubamracek, m.ostapenko, kcc Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D31300 llvm-svn: 298847 --- compiler-rt/test/lsan/TestCases/use_tls_dynamic.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler-rt/test/lsan/TestCases/use_tls_dynamic.cc b/compiler-rt/test/lsan/TestCases/use_tls_dynamic.cc index 770ffaf..c20232d 100644 --- a/compiler-rt/test/lsan/TestCases/use_tls_dynamic.cc +++ b/compiler-rt/test/lsan/TestCases/use_tls_dynamic.cc @@ -5,6 +5,7 @@ // RUN: LSAN_OPTIONS=$LSAN_BASE:"use_tls=0" not %run %t 2>&1 | FileCheck %s // RUN: LSAN_OPTIONS=$LSAN_BASE:"use_tls=1" %run %t 2>&1 // RUN: LSAN_OPTIONS="" %run %t 2>&1 +// UNSUPPORTED: i386-linux,i686-linux #ifndef BUILD_DSO #include -- 2.7.4