diff options
| author | Kuba Brecka <kuba.brecka@gmail.com> | 2015-11-04 15:43:45 +0000 |
|---|---|---|
| committer | Kuba Brecka <kuba.brecka@gmail.com> | 2015-11-04 15:43:45 +0000 |
| commit | 465cb8a6fa7b0568485b790392ed9d8ea5121fe7 (patch) | |
| tree | 3eada873ef1153789c4a49508e683919d4a48d70 /compiler-rt/test | |
| parent | 4de84ddec9b9fcdac4f2fdc4ffaf65d6dea2c33b (diff) | |
| download | bcm5719-llvm-465cb8a6fa7b0568485b790392ed9d8ea5121fe7.tar.gz bcm5719-llvm-465cb8a6fa7b0568485b790392ed9d8ea5121fe7.zip | |
[tsan] Use malloc zone interceptors on OS X, part 1 (refactoring)
TSan needs to use a custom malloc zone on OS X, which is already implemented in ASan. This patch is a refactoring patch (NFC) that extracts this from ASan into sanitizer_common, where we can reuse it in TSan.
Reviewed at http://reviews.llvm.org/D14330
llvm-svn: 252052
Diffstat (limited to 'compiler-rt/test')
| -rw-r--r-- | compiler-rt/test/asan/TestCases/Darwin/interface_symbols_darwin.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/compiler-rt/test/asan/TestCases/Darwin/interface_symbols_darwin.c b/compiler-rt/test/asan/TestCases/Darwin/interface_symbols_darwin.c index f37072a3ac4..9bd32869c9e 100644 --- a/compiler-rt/test/asan/TestCases/Darwin/interface_symbols_darwin.c +++ b/compiler-rt/test/asan/TestCases/Darwin/interface_symbols_darwin.c @@ -43,14 +43,6 @@ // RUN: echo __asan_report_exp_store_n >> %t.interface // RUN: echo __asan_get_current_fake_stack >> %t.interface // RUN: echo __asan_addr_is_in_fake_stack >> %t.interface -// RUN: echo __asan_mz_calloc >> %t.interface -// RUN: echo __asan_mz_destroy >> %t.interface -// RUN: echo __asan_mz_free >> %t.interface -// RUN: echo __asan_mz_malloc >> %t.interface -// RUN: echo __asan_mz_memalign >> %t.interface -// RUN: echo __asan_mz_realloc >> %t.interface -// RUN: echo __asan_mz_size >> %t.interface -// RUN: echo __asan_mz_valloc >> %t.interface // RUN: for i in `jot - 0 10`; do echo __asan_stack_malloc_$i >> %t.interface; done // RUN: for i in `jot - 0 10`; do echo __asan_stack_free_$i >> %t.interface; done |

