Browse Source

drc_proto: report rule hits only for rule-driven tests

pull/16/head
Tomasz Wlostowski 5 years ago
parent
commit
1cd349c8f6
  1. 3
      qa/drc_proto/drc_test_provider.cpp

3
qa/drc_proto/drc_test_provider.cpp

@ -92,6 +92,9 @@ void test::DRC_TEST_PROVIDER::accountCheck( const test::DRC_CONSTRAINT& constrai
void test::DRC_TEST_PROVIDER::reportRuleStatistics()
{
if( !m_isRuleDriven )
return;
m_drcEngine->ReportAux("Rule hit statistics: ");
for( auto stat : m_stats )
{

Loading…
Cancel
Save