Commit 738fcd9e by Joao Paulo Magalhaes

Add log of the benchmark name when checking results.

parent 1ce286f6
......@@ -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";
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment