From 4542a15b86aa54c7976055bc0f040c5d1dbcae1a Mon Sep 17 00:00:00 2001 From: Francis ANDRE Date: Sun, 3 Jun 2018 16:05:49 +0200 Subject: [PATCH] Append 'd' to 'TestApp' when compiling with _DEBUG --- Foundation/testsuite/src/ProcessTest.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Foundation/testsuite/src/ProcessTest.cpp b/Foundation/testsuite/src/ProcessTest.cpp index 9f571a3cd..04fb33b8c 100644 --- a/Foundation/testsuite/src/ProcessTest.cpp +++ b/Foundation/testsuite/src/ProcessTest.cpp @@ -159,6 +159,9 @@ void ProcessTest::testLaunchArgs() { #if defined (_WIN32) && !defined(_WIN32_WCE) std::string name("TestApp"); +#if defined(_DEBUG) + name += 'd'; +#endif std::string cmd = name; std::vector args;