mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-15 11:28:08 +00:00
fix token usage in normal and MOpt mode
This commit is contained in:
@ -1021,13 +1021,15 @@ void show_stats_normal(afl_state_t *afl) {
|
||||
|
||||
if (unlikely(!afl->skip_deterministic)) {
|
||||
|
||||
sprintf(tmp, "%s/%s, %s/%s, %s/%s",
|
||||
sprintf(tmp, "%s/%s, %s/%s, %s/%s, %s/%s",
|
||||
u_stringify_int(IB(0), afl->stage_finds[STAGE_EXTRAS_UO]),
|
||||
u_stringify_int(IB(1), afl->stage_cycles[STAGE_EXTRAS_UO]),
|
||||
u_stringify_int(IB(2), afl->stage_finds[STAGE_EXTRAS_UI]),
|
||||
u_stringify_int(IB(3), afl->stage_cycles[STAGE_EXTRAS_UI]),
|
||||
u_stringify_int(IB(4), afl->stage_finds[STAGE_EXTRAS_AO]),
|
||||
u_stringify_int(IB(5), afl->stage_cycles[STAGE_EXTRAS_AO]));
|
||||
u_stringify_int(IB(5), afl->stage_cycles[STAGE_EXTRAS_AO]),
|
||||
u_stringify_int(IB(6), afl->stage_finds[STAGE_EXTRAS_AI]),
|
||||
u_stringify_int(IB(7), afl->stage_cycles[STAGE_EXTRAS_AI]));
|
||||
|
||||
} else if (unlikely(!afl->extras_cnt || afl->custom_only)) {
|
||||
|
||||
@ -1839,13 +1841,15 @@ void show_stats_pizza(afl_state_t *afl) {
|
||||
|
||||
if (unlikely(!afl->skip_deterministic)) {
|
||||
|
||||
sprintf(tmp, "%s/%s, %s/%s, %s/%s",
|
||||
sprintf(tmp, "%s/%s, %s/%s, %s/%s, %s/%s",
|
||||
u_stringify_int(IB(0), afl->stage_finds[STAGE_EXTRAS_UO]),
|
||||
u_stringify_int(IB(1), afl->stage_cycles[STAGE_EXTRAS_UO]),
|
||||
u_stringify_int(IB(2), afl->stage_finds[STAGE_EXTRAS_UI]),
|
||||
u_stringify_int(IB(3), afl->stage_cycles[STAGE_EXTRAS_UI]),
|
||||
u_stringify_int(IB(4), afl->stage_finds[STAGE_EXTRAS_AO]),
|
||||
u_stringify_int(IB(5), afl->stage_cycles[STAGE_EXTRAS_AO]));
|
||||
u_stringify_int(IB(5), afl->stage_cycles[STAGE_EXTRAS_AO]),
|
||||
u_stringify_int(IB(6), afl->stage_finds[STAGE_EXTRAS_AI]),
|
||||
u_stringify_int(IB(7), afl->stage_cycles[STAGE_EXTRAS_AI]));
|
||||
|
||||
} else if (unlikely(!afl->extras_cnt || afl->custom_only)) {
|
||||
|
||||
|
Reference in New Issue
Block a user