From ae958acc83e5a30b69c3333f09e9d0a0f25eade5 Mon Sep 17 00:00:00 2001 From: yuawn Date: Tue, 14 Dec 2021 13:38:36 +0000 Subject: [PATCH] rename unique_crashes --- afl-whatsup | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/afl-whatsup b/afl-whatsup index 9b989b48..a88f3d10 100755 --- a/afl-whatsup +++ b/afl-whatsup @@ -188,7 +188,7 @@ for i in `find . -maxdepth 2 -iname fuzzer_stats | sort`; do TOTAL_TIME=$((TOTAL_TIME + RUN_UNIX)) TOTAL_EPS=$((TOTAL_EPS + EXEC_SEC)) TOTAL_EXECS=$((TOTAL_EXECS + execs_done)) - TOTAL_CRASHES=$((TOTAL_CRASHES + unique_crashes)) + TOTAL_CRASHES=$((TOTAL_CRASHES + saved_crashes)) TOTAL_PENDING=$((TOTAL_PENDING + pending_total)) TOTAL_PFAV=$((TOTAL_PFAV + pending_favs)) @@ -231,10 +231,10 @@ for i in `find . -maxdepth 2 -iname fuzzer_stats | sort`; do echo " cpu usage $CPU_USAGE%, memory usage $MEM_USAGE%" echo " cycle $((cycles_done + 1)), lifetime speed $EXEC_SEC execs/sec, path $cur_item/$corpus_count (${PATH_PERC}%)" - if [ "$unique_crashes" = "0" ]; then + if [ "$saved_crashes" = "0" ]; then echo " pending $pending_favs/$pending_total, coverage $bitmap_cvg, no crashes yet" else - echo " pending $pending_favs/$pending_total, coverage $bitmap_cvg, crash count $unique_crashes (!)" + echo " pending $pending_favs/$pending_total, coverage $bitmap_cvg, crash count $saved_crashes (!)" fi echo