diff options
author | Andrea Fioraldi <andreafioraldi@gmail.com> | 2019-11-11 15:53:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-11 15:53:24 +0100 |
commit | 388f4ae30240f2a675afa5b1febded00284ad450 (patch) | |
tree | 5ac20b7c7deff76fe4bb9269b1f684e48e2736a0 /src/afl-fuzz-stats.c | |
parent | 01d55372441960c435af8f3bd6b61d1302042728 (diff) | |
parent | f1fbea96f625a5af9b5321cb98acfc3378b5343e (diff) | |
download | afl++-388f4ae30240f2a675afa5b1febded00284ad450.tar.gz |
Merge pull request #106 from vanhauser-thc/radamsa
Radamsa
Diffstat (limited to 'src/afl-fuzz-stats.c')
-rw-r--r-- | src/afl-fuzz-stats.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/afl-fuzz-stats.c b/src/afl-fuzz-stats.c index 2ea03e94..851cfb1c 100644 --- a/src/afl-fuzz-stats.c +++ b/src/afl-fuzz-stats.c @@ -576,10 +576,11 @@ void show_stats(void) { " imported : " cRST "%-10s" bSTG bV "\n", tmp, sync_id ? DI(queued_imported) : (u8*)"n/a"); - sprintf(tmp, "%s/%s, %s/%s, %s/%s, %s/%s", DI(stage_finds[STAGE_HAVOC]), + sprintf(tmp, "%s/%s, %s/%s, %s/%s, %s/%s, %s/%s", DI(stage_finds[STAGE_HAVOC]), DI(stage_cycles[STAGE_HAVOC]), DI(stage_finds[STAGE_SPLICE]), DI(stage_cycles[STAGE_SPLICE]), DI(stage_finds[STAGE_PYTHON]), - DI(stage_cycles[STAGE_PYTHON]), DI(stage_finds[STAGE_CUSTOM_MUTATOR]), + DI(stage_cycles[STAGE_PYTHON]), DI(stage_finds[STAGE_RADAMSA]), + DI(stage_cycles[STAGE_RADAMSA]), DI(stage_finds[STAGE_CUSTOM_MUTATOR]), DI(stage_cycles[STAGE_CUSTOM_MUTATOR])); SAYF(bV bSTOP "havoc/custom : " cRST "%-36s " bSTG bV bSTOP, tmp); |