mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-12 14:17:59 +00:00
[libFuzzer] add colons to the stats output to avoid confusion
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@244708 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
75a2674466
commit
e0b167c66c
@ -81,8 +81,9 @@ void Fuzzer::PrintStats(const char *Where, size_t Cov, const char *End) {
|
|||||||
if (!Options.Verbosity) return;
|
if (!Options.Verbosity) return;
|
||||||
size_t Seconds = secondsSinceProcessStartUp();
|
size_t Seconds = secondsSinceProcessStartUp();
|
||||||
size_t ExecPerSec = (Seconds ? TotalNumberOfRuns / Seconds : 0);
|
size_t ExecPerSec = (Seconds ? TotalNumberOfRuns / Seconds : 0);
|
||||||
Printf("#%zd\t%s cov %zd bits %zd units %zd exec/s %zd %s", TotalNumberOfRuns,
|
Printf("#%zd\t%s cov: %zd bits: %zd units: %zd exec/s: %zd %s",
|
||||||
Where, Cov, TotalBits(), Corpus.size(), ExecPerSec, End);
|
TotalNumberOfRuns, Where, Cov, TotalBits(), Corpus.size(), ExecPerSec,
|
||||||
|
End);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Fuzzer::RereadOutputCorpus() {
|
void Fuzzer::RereadOutputCorpus() {
|
||||||
|
Loading…
Reference in New Issue
Block a user