Catch SkipTestException in performance tests

pull/8960/head
dkurt 8 years ago
parent 16368a275b
commit e74fed5c84
  1. 5
      modules/ts/src/ts_perf.cpp

@ -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;

Loading…
Cancel
Save