[compiler-rt] 6bfbb89 - [compiler-rt][libFuzzer] Disable counters test on arm
David Spickett via llvm-commits
llvm-commits at lists.llvm.org
Tue Dec 7 04:01:02 PST 2021
Author: David Spickett
Date: 2021-12-07T11:55:11Z
New Revision: 6bfbb89e96fa0c7d0d3fb71fb584f885d701fd7b
URL: https://github.com/llvm/llvm-project/commit/6bfbb89e96fa0c7d0d3fb71fb584f885d701fd7b
DIFF: https://github.com/llvm/llvm-project/commit/6bfbb89e96fa0c7d0d3fb71fb584f885d701fd7b.diff
LOG: [compiler-rt][libFuzzer] Disable counters test on arm
This test is either very slow or loops forever on 32 bit Arm.
One of a few tests causing timeouts on our buildbots:
https://lab.llvm.org/buildbot/#/builders/190/builds/513
Added:
Modified:
compiler-rt/test/fuzzer/counters.test
Removed:
################################################################################
diff --git a/compiler-rt/test/fuzzer/counters.test b/compiler-rt/test/fuzzer/counters.test
index 8f461c6e1bb3..27acaa4cdd67 100644
--- a/compiler-rt/test/fuzzer/counters.test
+++ b/compiler-rt/test/fuzzer/counters.test
@@ -1,4 +1,4 @@
-UNSUPPORTED: aarch64, ios
+UNSUPPORTED: aarch64, ios, arm
RUN: %cpp_compiler %S/CounterTest.cpp -o %t-CounterTest
RUN: not %run %t-CounterTest -max_len=6 -seed=1 -timeout=15 2>&1 | FileCheck %s --check-prefix=COUNTERS
More information about the llvm-commits
mailing list