From 096bcff160e2f604a7ba8ee3a18ccf93dde45454 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Thu, 7 Dec 2023 20:01:22 +0100 Subject: [PATCH] Try to fix a QA not working test on W10/msys2. Probably due to a not closed file when trying to delete it. --- qa/tests/pcbnew/test_prettifier.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qa/tests/pcbnew/test_prettifier.cpp b/qa/tests/pcbnew/test_prettifier.cpp index 6277b31c64..e53a754e08 100644 --- a/qa/tests/pcbnew/test_prettifier.cpp +++ b/qa/tests/pcbnew/test_prettifier.cpp @@ -91,7 +91,7 @@ BOOST_FIXTURE_TEST_CASE( FootprintPrettifier, PRETTIFIER_TEST_FIXTURE ) std::string goldenPath = fmt::format( "{}prettifier/{}_formatted.kicad_mod", KI_TEST::GetPcbnewTestDataDir(), footprint.ToStdString() ); - + { std::ifstream test( newPath ); std::ifstream golden( goldenPath ); @@ -105,6 +105,7 @@ BOOST_FIXTURE_TEST_CASE( FootprintPrettifier, PRETTIFIER_TEST_FIXTURE ) std::istreambuf_iterator(), std::istreambuf_iterator( golden.rdbuf() ) ), "Formatted footprints do not match!" ); + } std::filesystem::remove( newPath ); }