diff options
author | Alexey Samsonov <samsonov@google.com> | 2014-02-14 14:35:48 +0000 |
---|---|---|
committer | Alexey Samsonov <samsonov@google.com> | 2014-02-14 14:35:48 +0000 |
commit | e6a6183e9b8ecf7dec8808fa87577d5b574ca22e (patch) | |
tree | a6e5f3181f2e0c4ffc21f9648c5e9c873f34b330 /compiler-rt/test/tsan/fork_multithreaded.cc | |
parent | 9f20d6703479a952465f7db0c2fbd70904c030c2 (diff) | |
download | bcm5719-llvm-e6a6183e9b8ecf7dec8808fa87577d5b574ca22e.tar.gz bcm5719-llvm-e6a6183e9b8ecf7dec8808fa87577d5b574ca22e.zip |
Move TSan lit-tests under test/tsan
llvm-svn: 201414
Diffstat (limited to 'compiler-rt/test/tsan/fork_multithreaded.cc')
-rw-r--r-- | compiler-rt/test/tsan/fork_multithreaded.cc | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/compiler-rt/test/tsan/fork_multithreaded.cc b/compiler-rt/test/tsan/fork_multithreaded.cc new file mode 100644 index 00000000000..474b53e425a --- /dev/null +++ b/compiler-rt/test/tsan/fork_multithreaded.cc @@ -0,0 +1,42 @@ +// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s -check-prefix=CHECK-DIE +// RUN: %clangxx_tsan -O1 %s -o %t && TSAN_OPTIONS="die_after_fork=0" %t 2>&1 | FileCheck %s -check-prefix=CHECK-NODIE +#include <stdlib.h> +#include <stdio.h> +#include <errno.h> +#include <pthread.h> +#include <unistd.h> +#include <sys/types.h> +#include <sys/wait.h> + +static void *sleeper(void *p) { + sleep(10); + return 0; +} + +int main() { + pthread_t th; + pthread_create(&th, 0, sleeper, 0); + switch (fork()) { + default: // parent + while (wait(0) < 0) {} + break; + case 0: // child + { + pthread_t th2; + pthread_create(&th2, 0, sleeper, 0); + exit(0); + break; + } + case -1: // error + fprintf(stderr, "failed to fork (%d)\n", errno); + exit(1); + } + fprintf(stderr, "OK\n"); +} + +// CHECK-DIE: ThreadSanitizer: starting new threads after muti-threaded fork is not supported +// CHECK-DIE: OK + +// CHECK-NODIE-NOT: ThreadSanitizer: starting new threads after muti-threaded fork is not supported +// CHECK-NODIE: OK + |