mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-18 04:38:08 +00:00
implemented #801
This commit is contained in:
@ -823,7 +823,12 @@ void show_stats(afl_state_t *afl) {
|
||||
SAYF(bV bSTOP " total execs : " cRST "%-20s " bSTG bV bSTOP
|
||||
" total crashes : %s%-22s" bSTG bV "\n",
|
||||
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);
|
||||
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user