diff options
author | van Hauser <vh@thc.org> | 2019-07-17 16:39:35 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2019-07-17 16:39:35 +0200 |
commit | 4f5acb8f52f88f39b19874c529009be512e1de22 (patch) | |
tree | e3e8798ed7e984f34e66141ae2338c3f707829c8 /afl-fuzz.c | |
parent | cf71c535592c9daf7f87ee21f3a2c708cd3daeca (diff) | |
download | afl++-4f5acb8f52f88f39b19874c529009be512e1de22.tar.gz |
test case files with time information
Diffstat (limited to 'afl-fuzz.c')
-rw-r--r-- | afl-fuzz.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/afl-fuzz.c b/afl-fuzz.c index 81dff98c..e8c2f263 100644 --- a/afl-fuzz.c +++ b/afl-fuzz.c @@ -3350,6 +3350,8 @@ static u8* describe_op(u8 hnb) { sprintf(ret, "src:%06u", current_entry); + sprintf(ret + strlen(ret), ",time:%llu", get_cur_time() - start_time); + if (splicing_with >= 0) sprintf(ret + strlen(ret), "+%06u", splicing_with); |