[libFuzzer] better documentatio for -save_minimized_corpus=1
[oota-llvm.git] / lib / Fuzzer / FuzzerFlags.def
index ea47565f8926573be3a2ac7650bfb1423dc2b891..824c9f1b912bf433b8edd94037bb4c65e5cdf42a 100644 (file)
@@ -12,9 +12,6 @@
 //===----------------------------------------------------------------------===//
 FUZZER_FLAG_INT(verbosity, 1, "Verbosity level.")
 FUZZER_FLAG_INT(seed, 0, "Random seed. If 0, seed is generated.")
-FUZZER_FLAG_INT(iterations, -1,
-            "Number of iterations of the fuzzer internal loop"
-            " (-1 for infinite iterations).")
 FUZZER_FLAG_INT(runs, -1,
             "Number of individual test runs (-1 for infinite runs).")
 FUZZER_FLAG_INT(max_len, 64, "Maximum length of the test input.")
@@ -34,7 +31,8 @@ FUZZER_FLAG_INT(
 FUZZER_FLAG_INT(help, 0, "Print help.")
 FUZZER_FLAG_INT(
     save_minimized_corpus, 0,
-    "If 1, the minimized corpus is saved into the first input directory")
+    "If 1, the minimized corpus is saved into the first input directory. "
+    "Example: ./fuzzer -save_minimized_corpus=1 NEW_EMPTY_DIR OLD_CORPUS")
 FUZZER_FLAG_INT(use_counters, 1, "Use coverage counters")
 FUZZER_FLAG_INT(use_traces, 0, "Experimental: use instruction traces")
 FUZZER_FLAG_INT(use_full_coverage_set, 0,