From e951fe4eec98de20b9b843f97fec2cca84c48b9c Mon Sep 17 00:00:00 2001 From: Alexey Samsonov Date: Fri, 14 Feb 2014 14:35:48 +0000 Subject: Move TSan lit-tests under test/tsan git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@201414 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/tsan/thread_leak4.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 test/tsan/thread_leak4.c (limited to 'test/tsan/thread_leak4.c') diff --git a/test/tsan/thread_leak4.c b/test/tsan/thread_leak4.c new file mode 100644 index 000000000..f9fad0360 --- /dev/null +++ b/test/tsan/thread_leak4.c @@ -0,0 +1,18 @@ +// RUN: %clang_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s +#include +#include +#include + +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 -- cgit v1.2.3