1// RUN: %clang_tsan -O1 %s -o %t && %run %t 2>&1 | FileCheck %s
2#include "test.h"
3
4void *Thread(void *x) {
5 sleep(seconds: 100); // leave the thread "running"
6 return 0;
7}
8
9int main() {
10 pthread_t t;
11 pthread_create(newthread: &t, attr: 0, start_routine: Thread, arg: 0);
12 fprintf(stderr, format: "DONE\n");
13 return 0;
14}
15
16// CHECK: DONE
17// CHECK-NOT: WARNING: ThreadSanitizer: thread leak
18
19

source code of compiler-rt/test/tsan/thread_leak4.c