From aee16efe323b7c27aa31411c851feaf7ace85b52 Mon Sep 17 00:00:00 2001 From: Tomasz Wlostowski Date: Thu, 1 Oct 2020 18:47:35 +0200 Subject: [PATCH] drc: LVS test should not throw an error if running in no-project mode --- pcbnew/drc/drc_test_provider_lvs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/drc/drc_test_provider_lvs.cpp b/pcbnew/drc/drc_test_provider_lvs.cpp index 357cf2927b..83e4c9e3b7 100644 --- a/pcbnew/drc/drc_test_provider_lvs.cpp +++ b/pcbnew/drc/drc_test_provider_lvs.cpp @@ -216,7 +216,7 @@ bool DRC_TEST_PROVIDER_LVS::Run() if( !netlist ) { reportAux( _("No netlist provided, skipping LVS.") ); - return false; + return true; } testFootprints( *netlist );