Too slow a system isn't a test failure

If testing cannot be reliably performed, the test should be skipped to
minimize unnecessary work that non-deterministic failures cause.
This commit is contained in:
Markus Mäkelä 2019-07-01 17:18:22 +03:00
parent b3eb5ccc81
commit 25d134df9c
No known key found for this signature in database
GPG Key ID: 72D48FCE664F7B19

View File

@ -132,7 +132,7 @@ void gauge_raw_speed(TestConnections& test)
std::ostringstream os;
os << "The raw speed is too slow, " << rs.qps
<< "qps, compared to max_qps = " << max_qps << "qps for accurate testing.";
test.add_result(1, "%s", os.str().c_str());
exit(0);
}
}