diff options
author | Kostya Serebryany <kcc@google.com> | 2015-12-19 03:42:16 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2015-12-19 03:42:16 +0000 |
commit | 550e9c80a604d6ecc0b60f2f9832d7e95765cb72 (patch) | |
tree | 5634ce337ac2d4b22156c04627d5d5922f42dbd1 /llvm/docs | |
parent | bf65644c979787651574b05d9246416e43b4595f (diff) | |
download | bcm5719-llvm-550e9c80a604d6ecc0b60f2f9832d7e95765cb72.tar.gz bcm5719-llvm-550e9c80a604d6ecc0b60f2f9832d7e95765cb72.zip |
[libFuzzer] deprecate -save_minimized_corpus, -merge can be used instead
llvm-svn: 256086
Diffstat (limited to 'llvm/docs')
-rw-r--r-- | llvm/docs/LibFuzzer.rst | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/docs/LibFuzzer.rst b/llvm/docs/LibFuzzer.rst index e14ea67d652..84adff3616f 100644 --- a/llvm/docs/LibFuzzer.rst +++ b/llvm/docs/LibFuzzer.rst @@ -63,7 +63,6 @@ The most important flags are:: timeout 1200 Timeout in seconds (if positive). If one unit runs more than this number of seconds the process will abort. max_total_time 0 If positive, indicates the maximal total time in seconds to run the fuzzer. help 0 Print help. - save_minimized_corpus 0 If 1, the minimized corpus is saved into the first input directory. Example: ./fuzzer -save_minimized_corpus=1 NEW_EMPTY_DIR OLD_CORPUS merge 0 If 1, the 2-nd, 3-rd, etc corpora will be merged into the 1-st corpus. Only interesting units will be taken. jobs 0 Number of jobs to run. If jobs >= 1 we spawn this number of jobs in separate worker processes with stdout/stderr redirected to fuzz-JOB.log. workers 0 Number of simultaneous worker processes to run the jobs. If zero, "min(jobs,NumberOfCpuCores()/2)" is used. |