implemented #801

This commit is contained in:
Dominik Maier
2021-03-11 01:39:21 +01:00
parent 0484d9b024
commit 16e3e2a7f7

View File

@ -823,7 +823,12 @@ void show_stats(afl_state_t *afl) {
SAYF(bV bSTOP " total execs : " cRST "%-20s " bSTG bV bSTOP SAYF(bV bSTOP " total execs : " cRST "%-20s " bSTG bV bSTOP
" total crashes : %s%-22s" bSTG bV "\n", " total crashes : %s%-22s" bSTG bV "\n",
u_stringify_int(IB(0), afl->fsrv.total_execs), u_stringify_int(IB(0), afl->fsrv.total_execs),
afl->unique_crashes ? cLRD : cRST, tmp); // New crashes this round -> Red, restored crashes -> yellow, else
// white.
afl->total_crashes ? cLRD
: afl->unique_crashes ? cYEL
: cRST,
tmp);
} }