[compiler-rt] r298847 - Disable use_tls_dynamic on 32-bit linux
Francis Ricci via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 27 07:06:49 PDT 2017
Author: fjricci
Date: Mon Mar 27 09:06:49 2017
New Revision: 298847
URL: http://llvm.org/viewvc/llvm-project?rev=298847&view=rev
Log:
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
Modified:
compiler-rt/trunk/test/lsan/TestCases/use_tls_dynamic.cc
Modified: compiler-rt/trunk/test/lsan/TestCases/use_tls_dynamic.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/lsan/TestCases/use_tls_dynamic.cc?rev=298847&r1=298846&r2=298847&view=diff
==============================================================================
--- compiler-rt/trunk/test/lsan/TestCases/use_tls_dynamic.cc (original)
+++ compiler-rt/trunk/test/lsan/TestCases/use_tls_dynamic.cc Mon Mar 27 09:06:49 2017
@@ -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 <assert.h>
More information about the llvm-commits
mailing list