diff options
author | van Hauser <vh@thc.org> | 2020-03-20 09:44:51 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-03-20 09:44:51 +0100 |
commit | 5d932398dfcd11ef12918919181a37a2a96adb42 (patch) | |
tree | 810de0fc7739a443d13f5e1b839b10e480f67f5c /src/afl-fuzz-stats.c | |
parent | 5532fc1102f0df69ec807fcdbf2b001c2e16ed08 (diff) | |
download | afl++-5d932398dfcd11ef12918919181a37a2a96adb42.tar.gz |
expose cycles_wo_finds in fuzzer_stats
Diffstat (limited to 'src/afl-fuzz-stats.c')
-rw-r--r-- | src/afl-fuzz-stats.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/afl-fuzz-stats.c b/src/afl-fuzz-stats.c index 6ea6a8e9..b6e64841 100644 --- a/src/afl-fuzz-stats.c +++ b/src/afl-fuzz-stats.c @@ -73,6 +73,7 @@ void write_stats_file(afl_state_t *afl, double bitmap_cvg, double stability, "run_time : %llu\n" "fuzzer_pid : %d\n" "cycles_done : %llu\n" + "cycles_wo_finds : %llu\n" "execs_done : %llu\n" "execs_per_sec : %0.02f\n" // "real_execs_per_sec: %0.02f\n" // damn the name is too long @@ -103,9 +104,9 @@ void write_stats_file(afl_state_t *afl, double bitmap_cvg, double stability, "command_line : %s\n", afl->start_time / 1000, cur_time / 1000, (cur_time - afl->start_time) / 1000, getpid(), - afl->queue_cycle ? (afl->queue_cycle - 1) : 0, afl->total_execs, - /*eps,*/ afl->total_execs / - ((double)(get_cur_time() - afl->start_time) / 1000), + afl->queue_cycle ? (afl->queue_cycle - 1) : 0, afl->cycles_wo_finds, + afl->total_execs, /*eps,*/ + afl->total_execs / ((double)(get_cur_time() - afl->start_time) / 1000), afl->queued_paths, afl->queued_favored, afl->queued_discovered, afl->queued_imported, afl->max_depth, afl->current_entry, afl->pending_favored, afl->pending_not_fuzzed, afl->queued_variable, |