Commit e74fed5c authored by dkurt's avatar dkurt

Catch SkipTestException in performance tests

parent 16368a27
...@@ -1958,6 +1958,11 @@ void TestBase::RunPerfTestBody() ...@@ -1958,6 +1958,11 @@ void TestBase::RunPerfTestBody()
implConf.GetImpl(); implConf.GetImpl();
#endif #endif
} }
catch(SkipTestException&)
{
metrics.terminationReason = performance_metrics::TERM_SKIP_TEST;
return;
}
catch(PerfSkipTestException&) catch(PerfSkipTestException&)
{ {
metrics.terminationReason = performance_metrics::TERM_SKIP_TEST; metrics.terminationReason = performance_metrics::TERM_SKIP_TEST;
......
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