diff options
author | Kostya Serebryany <kcc@google.com> | 2016-01-23 19:34:19 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2016-01-23 19:34:19 +0000 |
commit | 9768e7f06bc81f8f033a5d5e9325ee804b6a71e9 (patch) | |
tree | fccb3124c7548b5c1960d4d55294e19d50fdb33c /llvm/lib/Fuzzer/FuzzerInternal.h | |
parent | 23d02f614970c698654af2bc06a1798260c0f62b (diff) | |
download | bcm5719-llvm-9768e7f06bc81f8f033a5d5e9325ee804b6a71e9.tar.gz bcm5719-llvm-9768e7f06bc81f8f033a5d5e9325ee804b6a71e9.zip |
[libFuzzer] add -abort_on_timeout option
llvm-svn: 258631
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 53b6cef4d91..b2a62dd7932 100644 --- a/llvm/lib/Fuzzer/FuzzerInternal.h +++ b/llvm/lib/Fuzzer/FuzzerInternal.h @@ -174,6 +174,7 @@ public: int Verbosity = 1; int MaxLen = 0; int UnitTimeoutSec = 300; + bool AbortOnTimeout = false; int MaxTotalTimeSec = 0; bool DoCrossOver = true; int MutateDepth = 5; |