diff options
author | Kostya Serebryany <kcc@google.com> | 2015-10-17 04:38:26 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2015-10-17 04:38:26 +0000 |
commit | fed509e73d09f1f082db6ed51564cc5f241cc4be (patch) | |
tree | 50d15238b120a97dda3f385c2d18b3557f4c2f8a /llvm/lib/Fuzzer/FuzzerFlags.def | |
parent | 3acf5fdd885e37708e79b13bf5b8cd58c0df2265 (diff) | |
download | bcm5719-llvm-fed509e73d09f1f082db6ed51564cc5f241cc4be.tar.gz bcm5719-llvm-fed509e73d09f1f082db6ed51564cc5f241cc4be.zip |
[libFuzzer] add -shuffle flag
llvm-svn: 250603
Diffstat (limited to 'llvm/lib/Fuzzer/FuzzerFlags.def')
-rw-r--r-- | llvm/lib/Fuzzer/FuzzerFlags.def | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerFlags.def b/llvm/lib/Fuzzer/FuzzerFlags.def index b50d6d4ad03..e9767dc4531 100644 --- a/llvm/lib/Fuzzer/FuzzerFlags.def +++ b/llvm/lib/Fuzzer/FuzzerFlags.def @@ -18,6 +18,7 @@ FUZZER_FLAG_INT(max_len, 64, "Maximum length of the test input.") FUZZER_FLAG_INT(cross_over, 1, "If 1, cross over inputs.") FUZZER_FLAG_INT(mutate_depth, 5, "Apply this number of consecutive mutations to each input.") +FUZZER_FLAG_INT(shuffle, 1, "Shuffle inputs at startup") FUZZER_FLAG_INT( prefer_small_during_initial_shuffle, -1, "If 1, always prefer smaller inputs during the initial corpus shuffle." |