summaryrefslogtreecommitdiff
path: root/test/fuzzer
diff options
context:
space:
mode:
authorKostya Serebryany <kcc@google.com>2019-06-14 22:56:50 +0000
committerKostya Serebryany <kcc@google.com>2019-06-14 22:56:50 +0000
commit2f7aed56648e0122afb905c909e564982c1e4c9c (patch)
tree07422b7297e0bee09eb9290b8df3f6affc325278 /test/fuzzer
parente5b01268529e18fb3b4fe333c8fd5a05badb0901 (diff)
downloadcompiler-rt-2f7aed56648e0122afb905c909e564982c1e4c9c.tar.gz
[libFuzzer] implement a better queue for the fork mode. Add an internal flag -stop_file to allow graceful shutdown of fuzzing. Enhance the logging in the fork mode
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@363470 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/fuzzer')
-rw-r--r--test/fuzzer/only-some-bytes-fork.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fuzzer/only-some-bytes-fork.test b/test/fuzzer/only-some-bytes-fork.test
index 4eb048294..f22430556 100644
--- a/test/fuzzer/only-some-bytes-fork.test
+++ b/test/fuzzer/only-some-bytes-fork.test
@@ -8,5 +8,5 @@ RUN: %cpp_compiler %S/OnlySomeBytesTest.cpp -o %t-Fuzz
# Test that the fork mode can collect and use the DFT
RUN: rm -rf %t && mkdir %t
-RUN: not %t-Fuzz -collect_data_flow=%t-DFT -use_value_profile=1 -runs=100000000 -fork=1 2> %t/log
+RUN: not %t-Fuzz -collect_data_flow=%t-DFT -use_value_profile=1 -runs=100000000 -fork=20 2> %t/log
RUN: grep BINGO %t/log