[compiler-rt] 7dbf5ce - [fuzzer][test] Disable noasan-strncmp test for AArch64
David Spickett via llvm-commits
llvm-commits at lists.llvm.org
Fri Apr 14 08:33:19 PDT 2023
Author: Antoine Moynault
Date: 2023-04-14T15:33:11Z
New Revision: 7dbf5ce538bce5c296d53960a751a5bbed2e027d
URL: https://github.com/llvm/llvm-project/commit/7dbf5ce538bce5c296d53960a751a5bbed2e027d
DIFF: https://github.com/llvm/llvm-project/commit/7dbf5ce538bce5c296d53960a751a5bbed2e027d.diff
LOG: [fuzzer][test] Disable noasan-strncmp test for AArch64
This test fails on several aarch64 bots
clang-aarch64-lld-2stage ( https://lab.llvm.org/buildbot/#/builders/185/builds/3525 )
clang-aarch64-full-2stage ( https://lab.llvm.org/buildbot/#/builders/179/builds/5904 )
clang-aarch64-sve-vla ( https://lab.llvm.org/buildbot/#/builders/197/builds/4519 )
Disable it while this is analyzed.
Reviewed By: DavidSpickett
Differential Revision: https://reviews.llvm.org/D148332
Added:
Modified:
compiler-rt/test/fuzzer/noasan-strncmp.test
Removed:
################################################################################
diff --git a/compiler-rt/test/fuzzer/noasan-strncmp.test b/compiler-rt/test/fuzzer/noasan-strncmp.test
index 4cb3e11573a11..ba1309cd3fd34 100644
--- a/compiler-rt/test/fuzzer/noasan-strncmp.test
+++ b/compiler-rt/test/fuzzer/noasan-strncmp.test
@@ -1,4 +1,4 @@
-UNSUPPORTED: darwin, target={{.*(freebsd|windows).*}}
+UNSUPPORTED: darwin, target={{.*(freebsd|windows).*}}, target=aarch64{{.*}}
RUN: %cpp_compiler -fno-sanitize=address %S/StrncmpTest.cpp -o %t-NoAsanStrncmpTest
RUN: not %run %t-NoAsanStrncmpTest -seed=2 -runs=10000000 2>&1 | FileCheck %s
More information about the llvm-commits
mailing list