Skip to content

Commit

Permalink
[libFuzzer] add colons to the stats output to avoid confusion
Browse files Browse the repository at this point in the history
llvm-svn: 244708
  • Loading branch information
kcc committed Aug 12, 2015
1 parent ac25eeb commit 1688098
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions llvm/lib/Fuzzer/FuzzerLoop.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,9 @@ void Fuzzer::PrintStats(const char *Where, size_t Cov, const char *End) {
if (!Options.Verbosity) return;
size_t Seconds = secondsSinceProcessStartUp();
size_t ExecPerSec = (Seconds ? TotalNumberOfRuns / Seconds : 0);
Printf("#%zd\t%s cov %zd bits %zd units %zd exec/s %zd %s", TotalNumberOfRuns,
Where, Cov, TotalBits(), Corpus.size(), ExecPerSec, End);
Printf("#%zd\t%s cov: %zd bits: %zd units: %zd exec/s: %zd %s",
TotalNumberOfRuns, Where, Cov, TotalBits(), Corpus.size(), ExecPerSec,
End);
}

void Fuzzer::RereadOutputCorpus() {
Expand Down

0 comments on commit 1688098

Please sign in to comment.