aboutsummaryrefslogtreecommitdiff
path: root/afl-whatsup
diff options
context:
space:
mode:
authoryuawn <ssspeed00@gmail.com>2021-12-14 13:38:36 +0000
committeryuawn <ssspeed00@gmail.com>2021-12-14 13:38:36 +0000
commitae958acc83e5a30b69c3333f09e9d0a0f25eade5 (patch)
tree069ac55506b9b5248df8c452a1e692613b9c754f /afl-whatsup
parent088aae7c25d49b0eebaf3d29842b148d1aeade01 (diff)
downloadAFLplusplus-ae958acc83e5a30b69c3333f09e9d0a0f25eade5.tar.gz
rename unique_crashes
Diffstat (limited to 'afl-whatsup')
-rwxr-xr-xafl-whatsup6
1 files 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