[compiler-rt] 5373ed0 - [fuzzer][test] Disable noasan-strcmp test for AArch64
Muhammad Omair Javaid via llvm-commits
llvm-commits at lists.llvm.org
Mon Dec 30 11:52:34 PST 2024
Author: Muhammad Omair Javaid
Date: 2024-12-31T00:52:03+05:00
New Revision: 5373ed0e79c3eaf8a11a0fd747aa80556f203211
URL: https://github.com/llvm/llvm-project/commit/5373ed0e79c3eaf8a11a0fd747aa80556f203211
DIFF: https://github.com/llvm/llvm-project/commit/5373ed0e79c3eaf8a11a0fd747aa80556f203211.diff
LOG: [fuzzer][test] Disable noasan-strcmp test for AArch64
This patch disables the `noasan-strcmp.test` for AArch64 Linux as it
consistently fails on the buildbot machine while passing on other
AArch64 Linux systems.
We have seen similar issues on noasan-strncmp.test in past which had
random failures on certain machines/environments.
Following buildbot is failing in both check stage1 and stage2:
https://lab.llvm.org/buildbot/#/builders/121/builds/711
Added:
Modified:
compiler-rt/test/fuzzer/noasan-strcmp.test
Removed:
################################################################################
diff --git a/compiler-rt/test/fuzzer/noasan-strcmp.test b/compiler-rt/test/fuzzer/noasan-strcmp.test
index 0d82d6b2846f81..f73af35f5d8987 100644
--- a/compiler-rt/test/fuzzer/noasan-strcmp.test
+++ b/compiler-rt/test/fuzzer/noasan-strcmp.test
@@ -1,4 +1,4 @@
-UNSUPPORTED: darwin, target={{.*(freebsd|windows).*}}
+UNSUPPORTED: darwin, target={{.*(freebsd|windows).*}}, target=aarch64{{.*}}
RUN: %cpp_compiler -fno-sanitize=address %S/StrcmpTest.cpp -o %t-NoAsanStrcmpTest
RUN: not %run %t-NoAsanStrcmpTest -seed=1 -runs=2000000 2>&1 | FileCheck %s
More information about the llvm-commits
mailing list