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:
jean-pierre charras 2020-11-10 11:30:30 +01:00
parent 5c309f0fef
commit 79dd6e6476
1 changed files with 2 additions and 0 deletions

View File

@ -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 ) )
{