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/lib/Fuzzer/FuzzerInternal.h | |
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/lib/Fuzzer/FuzzerInternal.h')
-rw-r--r-- | llvm/lib/Fuzzer/FuzzerInternal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerInternal.h b/llvm/lib/Fuzzer/FuzzerInternal.h index b2a62dd7932..d506f8fabab 100644 --- a/llvm/lib/Fuzzer/FuzzerInternal.h +++ b/llvm/lib/Fuzzer/FuzzerInternal.h @@ -175,6 +175,7 @@ public: int MaxLen = 0; int UnitTimeoutSec = 300; bool AbortOnTimeout = false; + int TimeoutExitCode = 77; int MaxTotalTimeSec = 0; bool DoCrossOver = true; int MutateDepth = 5; |