diff options
author | Kostya Serebryany <kcc@google.com> | 2012-03-28 18:30:10 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2012-03-28 18:30:10 +0000 |
commit | 48c157c25a348cf886ce759fc157d947cfdfc6f6 (patch) | |
tree | 7bda7daaa54ebaed4925c81951327280ef206daa /compiler-rt | |
parent | b526e93d03d55b4af73eb25077d10b70a0cf4178 (diff) | |
download | bcm5719-llvm-48c157c25a348cf886ce759fc157d947cfdfc6f6.tar.gz bcm5719-llvm-48c157c25a348cf886ce759fc157d947cfdfc6f6.zip |
[asan] add racy double-free test
llvm-svn: 153586
Diffstat (limited to 'compiler-rt')
-rw-r--r-- | compiler-rt/lib/asan/tests/asan_racy_double_free_test.cc | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/compiler-rt/lib/asan/tests/asan_racy_double_free_test.cc b/compiler-rt/lib/asan/tests/asan_racy_double_free_test.cc new file mode 100644 index 00000000000..12be9af2647 --- /dev/null +++ b/compiler-rt/lib/asan/tests/asan_racy_double_free_test.cc @@ -0,0 +1,32 @@ +#include <pthread.h> +#include <stdlib.h> +#include <stdio.h> + +const int N = 1000; +void *x[N]; + +void *Thread1(void *) { + for (int i = 0; i < N; i++) { + fprintf(stderr, "%s %d\n", __FUNCTION__, i); + free(x[i]); + } + return NULL; +} + +void *Thread2(void *) { + for (int i = 0; i < N; i++) { + fprintf(stderr, "%s %d\n", __FUNCTION__, i); + free(x[i]); + } + return NULL; +} + +int main() { + for (int i = 0; i < N; i++) + x[i] = malloc(128); + pthread_t t[2]; + pthread_create(&t[0], 0, Thread1, 0); + pthread_create(&t[1], 0, Thread2, 0); + pthread_join(t[0], 0); + pthread_join(t[1], 0); +} |