diff options
author | Kostya Serebryany <kcc@google.com> | 2017-04-19 01:22:04 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2017-04-19 01:22:04 +0000 |
commit | 1f231e7cc70bb84275948a1d44fe5f8347112edf (patch) | |
tree | b1d114fbef7d77733e877b4fb7d80e2e002337f6 | |
parent | b86e9a1c14242da78bd175506b8119a96efc19d2 (diff) | |
download | bcm5719-llvm-1f231e7cc70bb84275948a1d44fe5f8347112edf.tar.gz bcm5719-llvm-1f231e7cc70bb84275948a1d44fe5f8347112edf.zip |
[libFuzzer] update -help: mention -exact_artifact_path in help for -minimize_crash and -cleanse_crash
llvm-svn: 300642
-rw-r--r-- | llvm/lib/Fuzzer/FuzzerFlags.def | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerFlags.def b/llvm/lib/Fuzzer/FuzzerFlags.def index f5a9b7d5d10..5ed3374a4f8 100644 --- a/llvm/lib/Fuzzer/FuzzerFlags.def +++ b/llvm/lib/Fuzzer/FuzzerFlags.def @@ -48,9 +48,13 @@ FUZZER_FLAG_STRING(load_coverage_summary, "Experimental:" " Used with -merge=1") FUZZER_FLAG_INT(minimize_crash, 0, "If 1, minimizes the provided" " crash input. Use with -runs=N or -max_total_time=N to limit " - "the number attempts") + "the number attempts." + " Use with -exact_artifact_path to specify the output." + ) FUZZER_FLAG_INT(cleanse_crash, 0, "If 1, tries to cleanse the provided" - " crash input to make it contain fewer original bytes.") + " crash input to make it contain fewer original bytes." + " Use with -exact_artifact_path to specify the output." + ) FUZZER_FLAG_INT(minimize_crash_internal_step, 0, "internal flag") FUZZER_FLAG_INT(use_counters, 1, "Use coverage counters") FUZZER_FLAG_INT(use_indir_calls, 1, "Use indirect caller-callee counters") |