[compiler-rt] 4826aa0 - [Test][Sanitizer][atos] Disable atos-symbolized-recovery test

Blue Gaston via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 13 11:14:50 PDT 2023


Author: Blue Gaston
Date: 2023-04-13T11:10:21-07:00
New Revision: 4826aa01dbae48cfb83d8de6a98f6f31eab6dfae

URL: https://github.com/llvm/llvm-project/commit/4826aa01dbae48cfb83d8de6a98f6f31eab6dfae
DIFF: https://github.com/llvm/llvm-project/commit/4826aa01dbae48cfb83d8de6a98f6f31eab6dfae.diff

LOG: [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

Added: 
    

Modified: 
    compiler-rt/test/sanitizer_common/TestCases/Darwin/atos-symbolized-recover.cpp

Removed: 
    


################################################################################
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 b7bbae708b49a..4234e0c9a9af3 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);


        


More information about the llvm-commits mailing list