about summary refs log tree commit diff
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2021-12-09 15:21:12 +0100
committervanhauser-thc <vh@thc.org>2021-12-09 15:21:12 +0100
commit6ce72deb75163a8532ab3142cc1a9d8a1138459b (patch)
treedaafb4e45851c0af99c106f67e08f49b8b0df44f
parentcaf67efab14c5255fdd0ac7fb59dfaa64e6f36f4 (diff)
downloadafl++-6ce72deb75163a8532ab3142cc1a9d8a1138459b.tar.gz
more rename
m---------qemu_mode/qemuafl0
-rw-r--r--src/afl-fuzz-one.c4
-rw-r--r--src/afl-fuzz-stats.c6
3 files changed, 5 insertions, 5 deletions
diff --git a/qemu_mode/qemuafl b/qemu_mode/qemuafl
-Subproject 8809a2b2ebf089d3427dd8f6a0044bcc2e13b38
+Subproject 002e473939a350854d56f67ce7b2e2d9706b8bc
diff --git a/src/afl-fuzz-one.c b/src/afl-fuzz-one.c
index 96c32a86..ebf3f4ac 100644
--- a/src/afl-fuzz-one.c
+++ b/src/afl-fuzz-one.c
@@ -447,7 +447,7 @@ u8 fuzz_one_original(afl_state_t *afl) {
   if (unlikely(afl->not_on_tty)) {
 
     ACTF(
-        "Fuzzing test case #%u (%u total, %llu uniq crashes found, "
+        "Fuzzing test case #%u (%u total, %llu crashes saved, "
         "perf_score=%0.0f, exec_us=%llu, hits=%u, map=%u, ascii=%u)...",
         afl->current_entry, afl->queued_items, afl->saved_crashes,
         afl->queue_cur->perf_score, afl->queue_cur->exec_us,
@@ -2968,7 +2968,7 @@ static u8 mopt_common_fuzzing(afl_state_t *afl, MOpt_globals_t MOpt_globals) {
 
   if (afl->not_on_tty) {
 
-    ACTF("Fuzzing test case #%u (%u total, %llu uniq crashes found)...",
+    ACTF("Fuzzing test case #%u (%u total, %llu crashes saved)...",
          afl->current_entry, afl->queued_items, afl->saved_crashes);
     fflush(stdout);
 
diff --git a/src/afl-fuzz-stats.c b/src/afl-fuzz-stats.c
index 5016095f..50e6c2f4 100644
--- a/src/afl-fuzz-stats.c
+++ b/src/afl-fuzz-stats.c
@@ -832,7 +832,7 @@ void show_stats(afl_state_t *afl) {
   sprintf(tmp, "%s (%0.02f%%)", u_stringify_int(IB(0), afl->cur_skipped_items),
           ((double)afl->cur_skipped_items * 100) / afl->queued_items);
 
-  SAYF(bV bSTOP " items timed out : " cRST "%-18s " bSTG bV, tmp);
+  SAYF(bV bSTOP "  runs timed out : " cRST "%-18s " bSTG bV, tmp);
 
   sprintf(tmp, "%0.02f bits/tuple", t_bytes ? (((double)t_bits) / t_bytes) : 0);
 
@@ -870,7 +870,7 @@ void show_stats(afl_state_t *afl) {
 
   SAYF("  new edges on : " cRST "%-20s" bSTG bV "\n", tmp);
 
-  sprintf(tmp, "%s (%s%s unique)", u_stringify_int(IB(0), afl->total_crashes),
+  sprintf(tmp, "%s (%s%s saved)", u_stringify_int(IB(0), afl->total_crashes),
           u_stringify_int(IB(1), afl->saved_crashes),
           (afl->saved_crashes >= KEEP_UNIQUE_CRASH) ? "+" : "");
 
@@ -904,7 +904,7 @@ void show_stats(afl_state_t *afl) {
 
   }
 
-  sprintf(tmp, "%s (%s%s unique)", u_stringify_int(IB(0), afl->total_tmouts),
+  sprintf(tmp, "%s (%s%s saved)", u_stringify_int(IB(0), afl->total_tmouts),
           u_stringify_int(IB(1), afl->saved_tmouts),
           (afl->saved_hangs >= KEEP_UNIQUE_HANG) ? "+" : "");