diff options
author | Kostya Serebryany <kcc@google.com> | 2017-07-13 01:08:53 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2017-07-13 01:08:53 +0000 |
commit | 1ca738809a52e835ecde12444874ee06d177468c (patch) | |
tree | bcbe3541597a29bbd584bb9214eebecf769cda0d /llvm/lib/Fuzzer/FuzzerDriver.cpp | |
parent | 515d0e50013f529bc489f03624221f701e33c27b (diff) | |
download | bcm5719-llvm-1ca738809a52e835ecde12444874ee06d177468c.tar.gz bcm5719-llvm-1ca738809a52e835ecde12444874ee06d177468c.zip |
[libFuzzer] experimental feature -reduce_inputs (off by default) that tries to replace elements in the corpus with smaller ones that have the same feature set. Still needs tuning
llvm-svn: 307873
Diffstat (limited to 'llvm/lib/Fuzzer/FuzzerDriver.cpp')
-rw-r--r-- | llvm/lib/Fuzzer/FuzzerDriver.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerDriver.cpp b/llvm/lib/Fuzzer/FuzzerDriver.cpp index f88b5b7c2bb..87968893853 100644 --- a/llvm/lib/Fuzzer/FuzzerDriver.cpp +++ b/llvm/lib/Fuzzer/FuzzerDriver.cpp @@ -441,7 +441,6 @@ int MinimizeCrashInputInternalStep(Fuzzer *F, InputCorpus *Corpus) { Printf("INFO: The input is small enough, exiting\n"); exit(0); } - Corpus->AddToCorpus(U, 0); F->SetMaxInputLen(U.size()); F->SetMaxMutationLen(U.size() - 1); F->MinimizeCrashLoop(U); |