[compiler-rt] 6c48540 - Adding missing colon
Vitaly Buka via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 19 20:57:25 PST 2023
Author: Advenam Tacet
Date: 2023-01-19T20:57:12-08:00
New Revision: 6c485409de521565aeac427cf614158b86cc7fea
URL: https://github.com/llvm/llvm-project/commit/6c485409de521565aeac427cf614158b86cc7fea
DIFF: https://github.com/llvm/llvm-project/commit/6c485409de521565aeac427cf614158b86cc7fea.diff
LOG: Adding missing colon
Simple typo fix.
The absence of this colon may be confusing and result in misinterpretation of the result.
In normal libfuzzer mode, that colon is present.
You can compare with:
https://github.com/llvm/llvm-project/blob/aa0e9046c16bf27a8affbd903e2e3cad924a5217/compiler-rt/lib/fuzzer/FuzzerLoop.cpp#L356
Reviewed By: #sanitizers, vitalybuka
Differential Revision: https://reviews.llvm.org/D142171
Added:
Modified:
compiler-rt/lib/fuzzer/FuzzerFork.cpp
Removed:
################################################################################
diff --git a/compiler-rt/lib/fuzzer/FuzzerFork.cpp b/compiler-rt/lib/fuzzer/FuzzerFork.cpp
index d59d513842015..c248a1d246a30 100644
--- a/compiler-rt/lib/fuzzer/FuzzerFork.cpp
+++ b/compiler-rt/lib/fuzzer/FuzzerFork.cpp
@@ -220,7 +220,7 @@ struct GlobalEnv {
}
}
// if (!FilesToAdd.empty() || Job->ExitCode != 0)
- Printf("#%zd: cov: %zd ft: %zd corp: %zd exec/s %zd "
+ Printf("#%zd: cov: %zd ft: %zd corp: %zd exec/s: %zd "
"oom/timeout/crash: %zd/%zd/%zd time: %zds job: %zd dft_time: %d\n",
NumRuns, Cov.size(), Features.size(), Files.size(),
Stats.average_exec_per_sec, NumOOMs, NumTimeouts, NumCrashes,
More information about the llvm-commits
mailing list