[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:
Kostya Serebryany 2015-08-12 01:04:27 +00:00
parent 75a2674466
commit e0b167c66c

View File

@ -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() {