diff options
author | Kostya Serebryany <kcc@google.com> | 2016-12-27 23:24:55 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2016-12-27 23:24:55 +0000 |
commit | 2a8440df70fd59fb6c30444f74864a459bd18869 (patch) | |
tree | 2069f8ad740fabcdf0225051c6f35a6ffd5cdc8b /llvm/lib/Fuzzer/FuzzerOptions.h | |
parent | aa54e501058361bef34613c6b3f1905ca48f741b (diff) | |
download | bcm5719-llvm-2a8440df70fd59fb6c30444f74864a459bd18869.tar.gz bcm5719-llvm-2a8440df70fd59fb6c30444f74864a459bd18869.zip |
[libFuzzer] add an experimental flag -experimental_len_control=1 that sets max_len to 1M and tries to increases the actual max sizes of mutations very gradually (second attempt)
llvm-svn: 290637
Diffstat (limited to 'llvm/lib/Fuzzer/FuzzerOptions.h')
-rw-r--r-- | llvm/lib/Fuzzer/FuzzerOptions.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerOptions.h b/llvm/lib/Fuzzer/FuzzerOptions.h index 34e93fc34ac..cb702d28520 100644 --- a/llvm/lib/Fuzzer/FuzzerOptions.h +++ b/llvm/lib/Fuzzer/FuzzerOptions.h @@ -19,6 +19,7 @@ namespace fuzzer { struct FuzzingOptions { int Verbosity = 1; size_t MaxLen = 0; + bool ExperimentalLenControl = false; int UnitTimeoutSec = 300; int TimeoutExitCode = 77; int ErrorExitCode = 77; |