Catch SkipTestException in performance tests

This commit is contained in:
dkurt 2017-06-21 21:30:52 +03:00
parent 16368a275b
commit e74fed5c84

View File

@ -1958,6 +1958,11 @@ void TestBase::RunPerfTestBody()
implConf.GetImpl();
#endif
}
catch(SkipTestException&)
{
metrics.terminationReason = performance_metrics::TERM_SKIP_TEST;
return;
}
catch(PerfSkipTestException&)
{
metrics.terminationReason = performance_metrics::TERM_SKIP_TEST;