[compiler-rt] 144c5b6 - [compiler-rt][hwasan] Disable deep-recursion.c test on AArch64 Linux

David Spickett via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 16 08:26:43 PDT 2023


Author: David Spickett
Date: 2023-10-16T15:26:31Z
New Revision: 144c5b6d58803a2d4a0fe92a0fe331ff0347dc3b

URL: https://github.com/llvm/llvm-project/commit/144c5b6d58803a2d4a0fe92a0fe331ff0347dc3b
DIFF: https://github.com/llvm/llvm-project/commit/144c5b6d58803a2d4a0fe92a0fe331ff0347dc3b.diff

LOG: [compiler-rt][hwasan] Disable deep-recursion.c test on AArch64 Linux

The test program occasionaly fails to detect the fault as it should.
See https://github.com/llvm/llvm-project/issues/69221.

Added: 
    

Modified: 
    compiler-rt/test/hwasan/TestCases/deep-recursion.c

Removed: 
    


################################################################################
diff  --git a/compiler-rt/test/hwasan/TestCases/deep-recursion.c b/compiler-rt/test/hwasan/TestCases/deep-recursion.c
index fde8a0db5ad1575..39902d072a0d34a 100644
--- a/compiler-rt/test/hwasan/TestCases/deep-recursion.c
+++ b/compiler-rt/test/hwasan/TestCases/deep-recursion.c
@@ -17,6 +17,9 @@
 // Stack histories are currently not recorded on x86.
 // XFAIL: target=x86_64{{.*}}
 
+// Flaky on AArch64 Linux, see https://github.com/llvm/llvm-project/issues/69221.
+// UNSUPPORTED: target=aarch64-linux{{.*}}
+
 #include <stdlib.h>
 // At least -O1 is needed for this function to not have a stack frame on
 // AArch64.


        


More information about the llvm-commits mailing list