From c8944286c0b6df9a26fe2c240b947b9fca0acc32 Mon Sep 17 00:00:00 2001 From: Roberto Fernandez Bautista Date: Tue, 10 Aug 2021 21:29:25 +0100 Subject: [PATCH] Fix qa_pcbnew memory dump in msvc Quick fix for now as it was frustrating to run qa_pcbnew and not be able to see the output --- qa/pcbnew/test_module.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qa/pcbnew/test_module.cpp b/qa/pcbnew/test_module.cpp index 698d0522a0..533fc4f0a4 100644 --- a/qa/pcbnew/test_module.cpp +++ b/qa/pcbnew/test_module.cpp @@ -25,12 +25,14 @@ * Main file for the pcbnew tests to be compiled */ #include +#include #include bool init_unit_test() { + KIPLATFORM::APP::Init(); boost::unit_test::framework::master_test_suite().p_name.value = "Pcbnew module tests"; return wxInitialize(); }