Add log of the benchmark name when checking results.

This commit is contained in:
Joao Paulo Magalhaes 2017-04-29 18:30:28 +01:00
parent 1ce286f632
commit 738fcd9e6a
1 changed files with 2 additions and 0 deletions

View File

@ -220,8 +220,10 @@ void ResultsChecker::CheckResults(std::stringstream& output)
}
// finally we can call the subscribed check functions
for(const auto& p : results) {
VLOG(1) << "Checking results of " << p.second.name << ": ... \n";
CHECK(p.second.check_fn);
p.second.check_fn(p.second);
VLOG(1) << "Checking results of " << p.second.name << ": OK.\n";
}
}