[lib/Fuzzer] change the meaning of -timeout flag: now timeout is applied to every...
[oota-llvm.git] / lib / Fuzzer / FuzzerFlags.def
index 9d1b54524e95204122ae1c4cb51d9096ac60d223..c6fa388b72811c9758269c3ca9aaa7065b82b1d6 100644 (file)
@@ -27,7 +27,10 @@ FUZZER_FLAG_INT(
     " If 0, never do that. If -1, do it sometimes.")
 FUZZER_FLAG_INT(exit_on_first, 0,
             "If 1, exit after the first new interesting input is found.")
-FUZZER_FLAG_INT(timeout, -1, "Timeout in seconds (if positive).")
+FUZZER_FLAG_INT(
+    timeout, -1,
+    "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.")
 FUZZER_FLAG_INT(
     save_minimized_corpus, 0,