diff options
author | vanhauser-thc <vh@thc.org> | 2021-10-17 13:05:33 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-10-17 13:05:33 +0200 |
commit | ed10f3783bd8fab33ab5750f56bf87ed008f28ed (patch) | |
tree | 089ce2615c348812175533e9e07a5bb0ba092551 /src/afl-fuzz-stats.c | |
parent | 34f1074ba308e850feb08c51aad781f7d307a260 (diff) | |
download | afl++-ed10f3783bd8fab33ab5750f56bf87ed008f28ed.tar.gz |
new rtn cmplog: instrumentation side + supporting functions
Diffstat (limited to 'src/afl-fuzz-stats.c')
-rw-r--r-- | src/afl-fuzz-stats.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/afl-fuzz-stats.c b/src/afl-fuzz-stats.c index 870ba69a..7796036b 100644 --- a/src/afl-fuzz-stats.c +++ b/src/afl-fuzz-stats.c @@ -278,6 +278,7 @@ void write_stats_file(afl_state_t *afl, u32 t_bytes, double bitmap_cvg, "total_edges : %u\n" "var_byte_count : %u\n" "havoc_expansion : %u\n" + "auto_dict_entries : %u\n" "testcache_size : %llu\n" "testcache_count : %u\n" "testcache_evict : %u\n" @@ -316,7 +317,7 @@ void write_stats_file(afl_state_t *afl, u32 t_bytes, double bitmap_cvg, -1, #endif t_bytes, afl->fsrv.real_map_size, afl->var_byte_count, - afl->expand_havoc, afl->q_testcase_cache_size, + afl->expand_havoc, afl->a_extras_cnt, afl->q_testcase_cache_size, afl->q_testcase_cache_count, afl->q_testcase_evictions, afl->use_banner, afl->unicorn_mode ? "unicorn" : "", afl->fsrv.qemu_mode ? "qemu " : "", |