diff options
author | Vitaly Buka <vitalybuka@google.com> | 2022-04-13 18:33:27 -0700 |
---|---|---|
committer | Vitaly Buka <vitalybuka@google.com> | 2022-04-13 18:34:29 -0700 |
commit | 3a54bbb0f2860b1d4c18b84ea2bc2f8c07330ac8 (patch) | |
tree | d4881560d86025d9dbf4825395fcdb04a3b1d29e | |
parent | 65d3850efe227f0375a25d1cc862059a695698ee (diff) | |
download | llvm-3a54bbb0f2860b1d4c18b84ea2bc2f8c07330ac8.zip llvm-3a54bbb0f2860b1d4c18b84ea2bc2f8c07330ac8.tar.gz llvm-3a54bbb0f2860b1d4c18b84ea2bc2f8c07330ac8.tar.bz2 |
[sanitizer] Disable malloc_hook_skip on Darwin
Followup to D123566
-rw-r--r-- | compiler-rt/test/sanitizer_common/TestCases/malloc_hook_skip.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler-rt/test/sanitizer_common/TestCases/malloc_hook_skip.cpp b/compiler-rt/test/sanitizer_common/TestCases/malloc_hook_skip.cpp index 80b760a..a276acd 100644 --- a/compiler-rt/test/sanitizer_common/TestCases/malloc_hook_skip.cpp +++ b/compiler-rt/test/sanitizer_common/TestCases/malloc_hook_skip.cpp @@ -3,6 +3,7 @@ // Test requires platform with thread local support with no dependency on malloc. // UNSUPPORTED: android // UNSUPPORTED: ios +// UNSUPPORTED: darwin #include <assert.h> #include <sanitizer/allocator_interface.h> |