aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBlue Gaston <bblueconway@gmail.com>2023-04-13 11:10:21 -0700
committerBlue Gaston <bblueconway@gmail.com>2023-04-13 11:10:21 -0700
commit4826aa01dbae48cfb83d8de6a98f6f31eab6dfae (patch)
tree32142fdfbec52e6cc18813779591152ab5da8ce8
parentbe9115788c7f223dfc6d369455ce84c0e443743b (diff)
downloadllvm-4826aa01dbae48cfb83d8de6a98f6f31eab6dfae.zip
llvm-4826aa01dbae48cfb83d8de6a98f6f31eab6dfae.tar.gz
llvm-4826aa01dbae48cfb83d8de6a98f6f31eab6dfae.tar.bz2
[Test][Sanitizer][atos] Disable atos-symbolized-recovery test
This test tests uses undefined behavior and is proving to be very flakey. I am disabling for now. Radar to add a new test: rdar://108003900 rdar://107846128
-rw-r--r--compiler-rt/test/sanitizer_common/TestCases/Darwin/atos-symbolized-recover.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/compiler-rt/test/sanitizer_common/TestCases/Darwin/atos-symbolized-recover.cpp b/compiler-rt/test/sanitizer_common/TestCases/Darwin/atos-symbolized-recover.cpp
index b7bbae7..4234e0c 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/Darwin/atos-symbolized-recover.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/Darwin/atos-symbolized-recover.cpp
@@ -4,8 +4,9 @@
// RUN: %clangxx -O0 %s -o %t
// RUN: not %run %t 2>&1 | FileCheck %s
-// UBsan does not always symbolicate unknown address rdar://107846128
-// UNSUPPORTED: ubsan
+// This test tests for undefined behavior and is leading to various failures.
+// Going to disable to unblock CI and rethink a test for this. rdar://107846128
+// UNSUPPORTED: darwin
void bar() {
void *invalid_addr = reinterpret_cast<void *>(0xDEADBEEF);