[compiler-rt] r360211 - [libFuzzer] disable two tests on i386 that are causing timeouts on the bots

Kostya Serebryany via llvm-commits llvm-commits at lists.llvm.org
Tue May 7 17:43:12 PDT 2019


Author: kcc
Date: Tue May  7 17:43:12 2019
New Revision: 360211

URL: http://llvm.org/viewvc/llvm-project?rev=360211&view=rev
Log:
[libFuzzer] disable two tests on i386 that are causing timeouts on the bots

Modified:
    compiler-rt/trunk/test/fuzzer/magic-separator.test
    compiler-rt/trunk/test/fuzzer/only-some-bytes.test

Modified: compiler-rt/trunk/test/fuzzer/magic-separator.test
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/fuzzer/magic-separator.test?rev=360211&r1=360210&r2=360211&view=diff
==============================================================================
--- compiler-rt/trunk/test/fuzzer/magic-separator.test (original)
+++ compiler-rt/trunk/test/fuzzer/magic-separator.test Tue May  7 17:43:12 2019
@@ -1,4 +1,4 @@
 # Temporary disable this test on non-linux: looks like there is no memmem on windows.
-REQUIRES: linux
+REQUIRES: linux, x86_64
 RUN: %cpp_compiler -O2 %S/MagicSeparatorTest.cpp -o %t-MagicSeparatorTest
 RUN: not %run %t-MagicSeparatorTest  -use_value_profile=1 -seed=1 -runs=100000000 -max_len=10

Modified: compiler-rt/trunk/test/fuzzer/only-some-bytes.test
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/fuzzer/only-some-bytes.test?rev=360211&r1=360210&r2=360211&view=diff
==============================================================================
--- compiler-rt/trunk/test/fuzzer/only-some-bytes.test (original)
+++ compiler-rt/trunk/test/fuzzer/only-some-bytes.test Tue May  7 17:43:12 2019
@@ -3,7 +3,7 @@ REQUIRES: linux, x86_64
 
 # Build the tracer and the test.
 RUN: %no_fuzzer_cpp_compiler -c -fno-sanitize=all -fsanitize=dataflow  %S/../../lib/fuzzer/dataflow/DataFlow.cpp -o  %t-DataFlow.o
-RUN: %no_fuzzer_cpp_compiler    -fno-sanitize=all -fsanitize=dataflow -fsanitize-coverage=trace-pc-guard,pc-table,func,trace-cmp   %S/OnlySomeBytesTest.cpp     %t-DataFlow.o -o %t-DFT
+RUN: %no_fuzzer_cpp_compiler    -fno-sanitize=all -fsanitize=dataflow -fsanitize-coverage=trace-pc-guard,pc-table,bb,trace-cmp   %S/OnlySomeBytesTest.cpp     %t-DataFlow.o -o %t-DFT
 RUN: %cpp_compiler %S/OnlySomeBytesTest.cpp -o %t-Fuzz
 
 # Prepare the inputs.




More information about the llvm-commits mailing list