[compiler-rt] 372c275 - [dfsan][test] Disable the test with internal_symbolizer
Vitaly Buka via llvm-commits
llvm-commits at lists.llvm.org
Mon Apr 1 17:38:25 PDT 2024
Author: Vitaly Buka
Date: 2024-04-01T17:38:20-07:00
New Revision: 372c275800140f35a697f12a2e83d94d5603eaf5
URL: https://github.com/llvm/llvm-project/commit/372c275800140f35a697f12a2e83d94d5603eaf5
DIFF: https://github.com/llvm/llvm-project/commit/372c275800140f35a697f12a2e83d94d5603eaf5.diff
LOG: [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`.
Added:
Modified:
compiler-rt/test/dfsan/mmap_at_init.c
Removed:
################################################################################
diff --git a/compiler-rt/test/dfsan/mmap_at_init.c b/compiler-rt/test/dfsan/mmap_at_init.c
index a8d7535df4a6c4..9129dc7d39031c 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>
More information about the llvm-commits
mailing list