Eeschema, ERC: fix missing call to subgraph->ResolveDrivers() when test driver
conflicts (more than one name for a net) is disabled. This missing call was creating issues in tests that need a full connection calculation, especially ercCheckFloatingWires()
This commit is contained in:
parent
5c309f0fef
commit
79dd6e6476
|
@ -2093,6 +2093,8 @@ int CONNECTION_GRAPH::RunERC()
|
|||
if( !subgraph->ResolveDrivers( true ) )
|
||||
error_count++;
|
||||
}
|
||||
else
|
||||
subgraph->ResolveDrivers( false );
|
||||
|
||||
if( settings.IsTestEnabled( ERCE_BUS_TO_NET_CONFLICT ) )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue