blob: 329f7233a38a5cdda1ac0e1a192ad21f98fc4f08 [file] [log] [blame]
// RUN: %clang_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
#include <pthread.h>
#include <unistd.h>
void *Thread(void *x) {
return 0;
}
int main() {
for (int i = 0; i < 5; i++) {
pthread_t t;
pthread_create(&t, 0, Thread, 0);
}
sleep(1);
return 0;
}
// CHECK: WARNING: ThreadSanitizer: thread leak
// CHECK: And 4 more similar thread leaks