aboutsummaryrefslogtreecommitdiff
path: root/lib/tsan/output_tests/tiny_race.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tsan/output_tests/tiny_race.c')
-rw-r--r--lib/tsan/output_tests/tiny_race.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/tsan/output_tests/tiny_race.c b/lib/tsan/output_tests/tiny_race.c
new file mode 100644
index 000000000000..3a8d192a671a
--- /dev/null
+++ b/lib/tsan/output_tests/tiny_race.c
@@ -0,0 +1,14 @@
+#include <pthread.h>
+int Global;
+void *Thread1(void *x) {
+ Global = 42;
+ return x;
+}
+int main() {
+ pthread_t t;
+ pthread_create(&t, NULL, Thread1, NULL);
+ Global = 43;
+ pthread_join(t, NULL);
+ return Global;
+}
+// CHECK: WARNING: ThreadSanitizer: data race