drc: be more verbose when skipping LVS due to lack of schematic netlist
This commit is contained in:
parent
482767a850
commit
43404d4577
|
@ -211,8 +211,15 @@ bool DRC_TEST_PROVIDER_LVS::Run()
|
||||||
if( !reportPhase( _( "Checking PCB to schematic parity..." ) ) )
|
if( !reportPhase( _( "Checking PCB to schematic parity..." ) ) )
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if( m_drcEngine->GetSchematicNetlist() )
|
auto netlist = m_drcEngine->GetSchematicNetlist();
|
||||||
testFootprints( *m_drcEngine->GetSchematicNetlist() );
|
|
||||||
|
if( !netlist )
|
||||||
|
{
|
||||||
|
reportAux( _("No netlist provided, skipping LVS.") );
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
testFootprints( *netlist );
|
||||||
|
|
||||||
reportRuleStatistics();
|
reportRuleStatistics();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue