Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / tsan / vptr_benign_race.cpp
blobc0068955129f9c1c3de2d94a05bb1336f15bc4b9
1 // RUN: %clangxx_tsan -O1 %s -o %t && %run %t 2>&1 | FileCheck %s
2 #include <pthread.h>
3 #include <stdio.h>
5 struct A {
6 A() {
7 pthread_mutex_init(&m, 0);
8 pthread_cond_init(&c, 0);
9 signaled = false;
11 virtual void F() {
13 void Done() {
14 pthread_mutex_lock(&m);
15 signaled = true;
16 pthread_cond_signal(&c);
17 pthread_mutex_unlock(&m);
19 virtual ~A() {
21 pthread_mutex_t m;
22 pthread_cond_t c;
23 bool signaled;
26 struct B : A {
27 virtual void F() {
29 virtual ~B() {
30 pthread_mutex_lock(&m);
31 while (!signaled)
32 pthread_cond_wait(&c, &m);
33 pthread_mutex_unlock(&m);
37 static A *obj = new B;
39 void *Thread1(void *x) {
40 obj->F();
41 obj->Done();
42 return NULL;
45 void *Thread2(void *x) {
46 delete obj;
47 return NULL;
50 int main() {
51 pthread_t t[2];
52 pthread_create(&t[0], NULL, Thread1, NULL);
53 pthread_create(&t[1], NULL, Thread2, NULL);
54 pthread_join(t[0], NULL);
55 pthread_join(t[1], NULL);
56 fprintf(stderr, "PASS\n");
58 // CHECK: PASS
59 // CHECK-NOT: WARNING: ThreadSanitizer: data race