[libFuzzer] ensure that the dfsan tracing hooks actually run (using -verbosity=3...
[oota-llvm.git] / lib / Fuzzer / FuzzerFlags.def
index d50cd3d656340316d568ac2e2fba67d832d1c4e7..742f672e2012f25e2f11a2a4ecee7aa6587923ff 100644 (file)
@@ -17,7 +17,7 @@ FUZZER_FLAG_INT(iterations, -1,
             " (-1 for infinite iterations).")
 FUZZER_FLAG_INT(runs, -1,
             "Number of individual test runs (-1 for infinite runs).")
-FUZZER_FLAG_INT(max_len, 64, "Maximal length of the test input.")
+FUZZER_FLAG_INT(max_len, 64, "Maximum length of the test input.")
 FUZZER_FLAG_INT(cross_over, 1, "If 1, cross over inputs.")
 FUZZER_FLAG_INT(mutate_depth, 5,
             "Apply this number of consecutive mutations to each input.")
@@ -28,7 +28,7 @@ FUZZER_FLAG_INT(
 FUZZER_FLAG_INT(exit_on_first, 0,
             "If 1, exit after the first new interesting input is found.")
 FUZZER_FLAG_INT(
-    timeout, -1,
+    timeout, 1200,
     "Timeout in seconds (if positive). "
     "If one unit runs more than this number of seconds the process will abort.")
 FUZZER_FLAG_INT(help, 0, "Print help.")
@@ -57,4 +57,4 @@ FUZZER_FLAG_STRING(apply_tokens, "Read the given input file, substitute bytes "
 FUZZER_FLAG_STRING(sync_command, "Execute an external command "
                                  "\"<sync_command> <test_corpus>\" "
                                  "to synchronize the test corpus.")
-FUZZER_FLAG_INT(sync_timeout, 600, "Minimal timeout between syncs.")
+FUZZER_FLAG_INT(sync_timeout, 600, "Minimum timeout between syncs.")