From ea64f37c5f91dea1c2c67b6633a60a44edaf9940 Mon Sep 17 00:00:00 2001 From: Julian Lettner Date: Tue, 13 Aug 2019 00:37:48 +0000 Subject: [PATCH] [TSan] Fix test failing on Linux llvm-svn: 368641 (cherry picked from commit d8c47d52da518e9c3c3c9053419ef36dbfbd441b) --- compiler-rt/test/tsan/libdispatch/dispatch_once_deadlock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/test/tsan/libdispatch/dispatch_once_deadlock.c b/compiler-rt/test/tsan/libdispatch/dispatch_once_deadlock.c index 8379f81a910178..9c7c47e9235bf8 100644 --- a/compiler-rt/test/tsan/libdispatch/dispatch_once_deadlock.c +++ b/compiler-rt/test/tsan/libdispatch/dispatch_once_deadlock.c @@ -1,7 +1,7 @@ // Check that calling dispatch_once from a report callback works. // RUN: %clang_tsan %s -o %t -// RUN: not %run %t 2>&1 | FileCheck %s +// RUN: not %env_tsan_opts=ignore_noninstrumented_modules=0 %run %t 2>&1 | FileCheck %s #include