summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKuba Brecka <kuba.brecka@gmail.com>2016-07-01 12:55:36 +0000
committerKuba Brecka <kuba.brecka@gmail.com>2016-07-01 12:55:36 +0000
commit141531e6567bf51f0dfd5a414d3083c34a029bda (patch)
treef350013d93475a900d717cf8711446fe4ebb962b
parent24e2814767b65f686885d716c9f200982359c780 (diff)
downloadcompiler-rt-141531e6567bf51f0dfd5a414d3083c34a029bda.tar.gz
[tsan] Relax the "ignored-interceptors.mm" testcase. The test has been flaky because it's detecting a false positive race (coming from a system library) and sometimes that race is detected after we're printing "Done".
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@274346 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/tsan/Darwin/ignored-interceptors.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tsan/Darwin/ignored-interceptors.mm b/test/tsan/Darwin/ignored-interceptors.mm
index 680fea49e..d51314281 100644
--- a/test/tsan/Darwin/ignored-interceptors.mm
+++ b/test/tsan/Darwin/ignored-interceptors.mm
@@ -6,7 +6,7 @@
// RUN: %clang_tsan %s -o %t -framework Foundation
// Check that without the flag, there are false positives.
-// RUN: %deflake %run %t 2>&1 | FileCheck %s --check-prefix=CHECK --check-prefix=CHECK-RACE
+// RUN: %deflake %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-RACE
// With ignore_interceptors_accesses=1, no races are reported.
// RUN: %env_tsan_opts=ignore_interceptors_accesses=1 %run %t 2>&1 | FileCheck %s