Skip to content

Commit 6d5ba79

Browse files
authored
[compiler-rt][asan] Re-enable ManyThreadsTest on AArch64 (#127795)
Disabled in 2ab51bf, 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 467afc5 for same reason and it has also been observed on x86: https://lists.llvm.org/pipermail/llvm-dev/2016-January/094607.html Fixes: #24763
1 parent d6858dd commit 6d5ba79

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,8 +369,7 @@ void *ManyThreadsWorker(void *a) {
369369
return 0;
370370
}
371371

372-
#if !defined(__aarch64__) && !defined(__powerpc64__)
373-
// FIXME: Infinite loop in AArch64 (PR24389).
372+
#if !defined(__powerpc64__)
374373
// FIXME: Also occasional hang on powerpc. Maybe same problem as on AArch64?
375374
TEST(AddressSanitizer, ManyThreadsTest) {
376375
const size_t kNumThreads =

0 commit comments

Comments
 (0)