forked from OSchip/llvm-project
[libFuzzer] disable two tests on i386 that are causing timeouts on the bots
llvm-svn: 360211
This commit is contained in:
parent
b61eaebb6b
commit
a27a0914d3
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue