[compiler-rt] 6d5ba79 - [compiler-rt][asan] Re-enable ManyThreadsTest on AArch64 (#127795)

via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 21 01:46:02 PST 2025


Author: Cullen Rhodes
Date: 2025-02-21T09:45:58Z
New Revision: 6d5ba79c6604a6f66400d573b8aabc34cb75d0b5

URL: https://github.com/llvm/llvm-project/commit/6d5ba79c6604a6f66400d573b8aabc34cb75d0b5
DIFF: https://github.com/llvm/llvm-project/commit/6d5ba79c6604a6f66400d573b8aabc34cb75d0b5.diff

LOG: [compiler-rt][asan] Re-enable ManyThreadsTest on AArch64 (#127795)

Disabled in 2ab51bf13a1f6ca96823b755c036227dfd0892f9, doesn't hang for
me on AArch64 (Graviton 3, tested 1000 iterations). May still be an
issue, but hard to know unless we enable it again to find out.

n.b. test was also disabled on PowerPC in
467afc5f847f72221a42d9142c5b4733b44b52dc for same reason and it has also
been observed on x86:
https://lists.llvm.org/pipermail/llvm-dev/2016-January/094607.html

Fixes: https://github.com/llvm/llvm-project/issues/24763

Added: 
    

Modified: 
    compiler-rt/lib/asan/tests/asan_test.cpp

Removed: 
    


################################################################################
diff  --git a/compiler-rt/lib/asan/tests/asan_test.cpp b/compiler-rt/lib/asan/tests/asan_test.cpp
index 56377bde1c8de..0d98b1498a821 100644
--- a/compiler-rt/lib/asan/tests/asan_test.cpp
+++ b/compiler-rt/lib/asan/tests/asan_test.cpp
@@ -369,8 +369,7 @@ void *ManyThreadsWorker(void *a) {
   return 0;
 }
 
-#if !defined(__aarch64__) && !defined(__powerpc64__)
-// FIXME: Infinite loop in AArch64 (PR24389).
+#if !defined(__powerpc64__)
 // FIXME: Also occasional hang on powerpc.  Maybe same problem as on AArch64?
 TEST(AddressSanitizer, ManyThreadsTest) {
   const size_t kNumThreads =


        


More information about the llvm-commits mailing list