llvm-capstone/compiler-rt/test/tsan/thread_leak5.c
Dmitry Vyukov 3ab6b2347e tsan: remove sleeps from tests
Even sleep(1) lead to episodical flakes on some machines.
Use an invisible by tsan barrier to enforce required execution order instead.
This makes the tests deterministic and faster.

llvm-svn: 226659
2015-01-21 13:50:02 +00:00

23 lines
527 B
C

// RUN: %clang_tsan -O1 %s -o %t && %deflake %run %t | FileCheck %s
#include "test.h"
void *Thread(void *x) {
barrier_wait(&barrier);
return 0;
}
int main() {
volatile int N = 5; // prevent loop unrolling
barrier_init(&barrier, N + 1);
for (int i = 0; i < N; i++) {
pthread_t t;
pthread_create(&t, 0, Thread, 0);
}
barrier_wait(&barrier);
sleep(1); // wait for the threads to finish and exit
return 0;
}
// CHECK: WARNING: ThreadSanitizer: thread leak
// CHECK: And 4 more similar thread leaks