From: Kostya Serebryany Date: Wed, 19 Apr 2017 01:22:04 +0000 (+0000) Subject: [libFuzzer] update -help: mention -exact_artifact_path in help for -minimize_crash... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d4cfbc56b18e0324e8e322a5d76f01419ba93bb2;p=llvm [libFuzzer] update -help: mention -exact_artifact_path in help for -minimize_crash and -cleanse_crash git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@300642 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Fuzzer/FuzzerFlags.def b/lib/Fuzzer/FuzzerFlags.def index f5a9b7d5d10..5ed3374a4f8 100644 --- a/lib/Fuzzer/FuzzerFlags.def +++ b/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")