[llvm] r300642 - [libFuzzer] update -help: mention -exact_artifact_path in help for -minimize_crash and -cleanse_crash

Kostya Serebryany via llvm-commits llvm-commits at lists.llvm.org
Tue Apr 18 18:22:05 PDT 2017


Author: kcc
Date: Tue Apr 18 20:22:04 2017
New Revision: 300642

URL: http://llvm.org/viewvc/llvm-project?rev=300642&view=rev
Log:
[libFuzzer] update -help: mention -exact_artifact_path in help for -minimize_crash and -cleanse_crash

Modified:
    llvm/trunk/lib/Fuzzer/FuzzerFlags.def

Modified: llvm/trunk/lib/Fuzzer/FuzzerFlags.def
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Fuzzer/FuzzerFlags.def?rev=300642&r1=300641&r2=300642&view=diff
==============================================================================
--- llvm/trunk/lib/Fuzzer/FuzzerFlags.def (original)
+++ llvm/trunk/lib/Fuzzer/FuzzerFlags.def Tue Apr 18 20:22:04 2017
@@ -48,9 +48,13 @@ FUZZER_FLAG_STRING(load_coverage_summary
                    " 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")




More information about the llvm-commits mailing list