aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVitaly Buka <vitalybuka@google.com>2024-04-01 17:28:44 -0700
committerVitaly Buka <vitalybuka@google.com>2024-04-01 17:38:20 -0700
commit372c275800140f35a697f12a2e83d94d5603eaf5 (patch)
tree2f347acb81e0cb888ae03d37545ab554feefa330
parent9dbd364589883ae3343a291077804c564d4b3de5 (diff)
downloadllvm-372c275800140f35a697f12a2e83d94d5603eaf5.zip
llvm-372c275800140f35a697f12a2e83d94d5603eaf5.tar.gz
llvm-372c275800140f35a697f12a2e83d94d5603eaf5.tar.bz2
[dfsan][test] Disable the test with internal_symbolizer
After #87191 we had to add 8b135a7d1f59a5a7adccb162abf92d751209afe7, which makes symbolizer to calls a global constructor with `realloc`.
-rw-r--r--compiler-rt/test/dfsan/mmap_at_init.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler-rt/test/dfsan/mmap_at_init.c b/compiler-rt/test/dfsan/mmap_at_init.c
index a8d7535..9129dc7 100644
--- a/compiler-rt/test/dfsan/mmap_at_init.c
+++ b/compiler-rt/test/dfsan/mmap_at_init.c
@@ -4,6 +4,9 @@
//
// Tests that calling mmap() during during dfsan initialization works.
+// `internal_symbolizer` can not use `realloc` on memory from the test `calloc`.
+// UNSUPPORTED: internal_symbolizer
+
#include <sanitizer/dfsan_interface.h>
#include <sys/mman.h>
#include <unistd.h>