aboutsummaryrefslogtreecommitdiff
path: root/lib/tsan/lit_tests/halt_on_error.cc
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tsan/lit_tests/halt_on_error.cc')
-rw-r--r--lib/tsan/lit_tests/halt_on_error.cc25
1 files changed, 0 insertions, 25 deletions
diff --git a/lib/tsan/lit_tests/halt_on_error.cc b/lib/tsan/lit_tests/halt_on_error.cc
deleted file mode 100644
index fddaffff29aa..000000000000
--- a/lib/tsan/lit_tests/halt_on_error.cc
+++ /dev/null
@@ -1,25 +0,0 @@
-// RUN: %clang_tsan -O1 %s -o %t && TSAN_OPTIONS="$TSAN_OPTIONS halt_on_error=1" not %t 2>&1 | FileCheck %s
-#include <pthread.h>
-#include <stdio.h>
-
-int X;
-
-void *Thread(void *x) {
- X = 42;
- return 0;
-}
-
-int main() {
- fprintf(stderr, "BEFORE\n");
- pthread_t t;
- pthread_create(&t, 0, Thread, 0);
- X = 43;
- pthread_join(t, 0);
- fprintf(stderr, "AFTER\n");
- return 0;
-}
-
-// CHECK: BEFORE
-// CHECK: WARNING: ThreadSanitizer: data race
-// CHECK-NOT: AFTER
-