Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / tsan / vptr_harmful_race.cpp
blobd15b3969ab8181766046d00badcf2a7cb2eb55be
1 // RUN: %clangxx_tsan -O1 %s -o %t && %deflake %run %t | FileCheck %s
2 #include "test.h"
3 #include <semaphore.h>
5 struct A {
6 A() {
7 sem_init(&sem_, 0, 0);
9 virtual void F() {
11 void Done() {
12 sem_post(&sem_);
14 virtual ~A() {
15 sem_wait(&sem_);
16 sem_destroy(&sem_);
18 sem_t sem_;
21 struct B : A {
22 virtual void F() {
24 virtual ~B() { }
27 static A *obj = new B;
29 void *Thread1(void *x) {
30 obj->F();
31 obj->Done();
32 barrier_wait(&barrier);
33 return NULL;
36 void *Thread2(void *x) {
37 barrier_wait(&barrier);
38 delete obj;
39 return NULL;
42 int main() {
43 barrier_init(&barrier, 2);
44 pthread_t t[2];
45 pthread_create(&t[0], NULL, Thread1, NULL);
46 pthread_create(&t[1], NULL, Thread2, NULL);
47 pthread_join(t[0], NULL);
48 pthread_join(t[1], NULL);
51 // CHECK: WARNING: ThreadSanitizer: data race on vptr