diff options
Diffstat (limited to 'compiler-rt/test/tsan/thread_leak4.c')
-rw-r--r-- | compiler-rt/test/tsan/thread_leak4.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/compiler-rt/test/tsan/thread_leak4.c b/compiler-rt/test/tsan/thread_leak4.c new file mode 100644 index 00000000000..f9fad0360d3 --- /dev/null +++ b/compiler-rt/test/tsan/thread_leak4.c @@ -0,0 +1,18 @@ +// RUN: %clang_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s +#include <pthread.h> +#include <unistd.h> +#include <stdio.h> + +void *Thread(void *x) { + sleep(10); + return 0; +} + +int main() { + pthread_t t; + pthread_create(&t, 0, Thread, 0); + printf("OK\n"); + return 0; +} + +// CHECK-NOT: WARNING: ThreadSanitizer: thread leak |