Skip to content
Snippets Groups Projects
Commit 626f303e authored by Jan Tattermusch's avatar Jan Tattermusch
Browse files

Merge pull request #6252 from vjpai/empty_driver_wall

Keep out performance tests that don't have scenarios
parents 1b68cbdf dfdfe269
No related branches found
No related tags found
No related merge requests found
......@@ -104,6 +104,9 @@ static void QpsDriver() {
}
GPR_ASSERT(scenarios.ParseFromString(binary));
// Make sure that there is at least some valid scenario here
GPR_ASSERT(scenarios.scenarios_size() > 0);
for (int i = 0; i < scenarios.scenarios_size(); i++) {
const Scenario &scenario = scenarios.scenarios(i);
std::cerr << "RUNNING SCENARIO: " << scenario.name() << "\n";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment