diff options
author | Kostya Serebryany <kcc@google.com> | 2016-01-29 23:30:07 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2016-01-29 23:30:07 +0000 |
commit | 54a6363a8f154430342ea6fa4a9d81b686587ba0 (patch) | |
tree | 58b6a2de02c58d61d05a06c01ba11c4411da5126 /llvm/docs | |
parent | 6038d3e5c650a9044390d6f861a73528877cfd32 (diff) | |
download | bcm5719-llvm-54a6363a8f154430342ea6fa4a9d81b686587ba0.tar.gz bcm5719-llvm-54a6363a8f154430342ea6fa4a9d81b686587ba0.zip |
[libFuzzer] add -timeout_exitcode option
llvm-svn: 259265
Diffstat (limited to 'llvm/docs')
-rw-r--r-- | llvm/docs/LibFuzzer.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/docs/LibFuzzer.rst b/llvm/docs/LibFuzzer.rst index 7a8d090241c..b4c89197d82 100644 --- a/llvm/docs/LibFuzzer.rst +++ b/llvm/docs/LibFuzzer.rst @@ -62,6 +62,7 @@ The most important flags are:: mutate_depth 5 Apply this number of consecutive mutations to each input. timeout 1200 Timeout in seconds (if positive). If one unit runs more than this number of seconds the process will abort. abort_on_timeout 0 If positive, call abort on timeout. + timeout_exitcode 77 Unless abort_on_timeout is set, use this exitcode on timeout. max_total_time 0 If positive, indicates the maximal total time in seconds to run the fuzzer. help 0 Print help. merge 0 If 1, the 2-nd, 3-rd, etc corpora will be merged into the 1-st corpus. Only interesting units will be taken. |