diff options
author | Kostya Serebryany <kcc@google.com> | 2016-09-22 01:34:58 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2016-09-22 01:34:58 +0000 |
commit | 624f59f4d8ecc5021e87b5ea96cb76b035e94fca (patch) | |
tree | 2c0ba3c49dc2391def0ff7a91b7899616692385f /llvm/lib/Fuzzer/FuzzerInternal.h | |
parent | 150aa321f7a3988d69f34c6596d366f6fc4f98e0 (diff) | |
download | bcm5719-llvm-624f59f4d8ecc5021e87b5ea96cb76b035e94fca.tar.gz bcm5719-llvm-624f59f4d8ecc5021e87b5ea96cb76b035e94fca.zip |
[libFuzzer] add 'features' to the corpus elements, allow mutations with Size > MaxSize, fix sha1 in corpus stats; various refactorings
llvm-svn: 282129
Diffstat (limited to 'llvm/lib/Fuzzer/FuzzerInternal.h')
-rw-r--r-- | llvm/lib/Fuzzer/FuzzerInternal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerInternal.h b/llvm/lib/Fuzzer/FuzzerInternal.h index 3142aac1187..ccb583c1ad0 100644 --- a/llvm/lib/Fuzzer/FuzzerInternal.h +++ b/llvm/lib/Fuzzer/FuzzerInternal.h @@ -159,7 +159,7 @@ private: FuzzingOptions Options; system_clock::time_point ProcessStartTime = system_clock::now(); - system_clock::time_point UnitStartTime; + system_clock::time_point UnitStartTime, UnitStopTime; long TimeOfLongestUnitInSeconds = 0; long EpochOfLastReadOfOutputCorpus = 0; |