diff options
| author | Kostya Serebryany <kcc@google.com> | 2019-05-08 00:43:12 +0000 | 
|---|---|---|
| committer | Kostya Serebryany <kcc@google.com> | 2019-05-08 00:43:12 +0000 | 
| commit | a27a0914d34392a9b739862222f240fd4fea59e7 (patch) | |
| tree | 83d050af6fa275491b2bdd6f6c99a7267b5ee9c9 | |
| parent | b61eaebb6b851bcf9e9d40741c2c7c1a7c1d836a (diff) | |
| download | bcm5719-llvm-a27a0914d34392a9b739862222f240fd4fea59e7.tar.gz bcm5719-llvm-a27a0914d34392a9b739862222f240fd4fea59e7.zip | |
[libFuzzer] disable two tests on i386 that are causing timeouts on the bots
llvm-svn: 360211
| -rw-r--r-- | compiler-rt/test/fuzzer/magic-separator.test | 2 | ||||
| -rw-r--r-- | compiler-rt/test/fuzzer/only-some-bytes.test | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/compiler-rt/test/fuzzer/magic-separator.test b/compiler-rt/test/fuzzer/magic-separator.test index fdffc5f8768..2f6737f9b91 100644 --- a/compiler-rt/test/fuzzer/magic-separator.test +++ b/compiler-rt/test/fuzzer/magic-separator.test @@ -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 diff --git a/compiler-rt/test/fuzzer/only-some-bytes.test b/compiler-rt/test/fuzzer/only-some-bytes.test index a783548da2a..68d0a7266f7 100644 --- a/compiler-rt/test/fuzzer/only-some-bytes.test +++ b/compiler-rt/test/fuzzer/only-some-bytes.test @@ -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. | 

