From 4a57fed5a75c3559a32788e341beb862eb76018b Mon Sep 17 00:00:00 2001 From: Ykkrosh Date: Sat, 19 Jul 2008 19:00:32 +0000 Subject: [PATCH] Make CxxTest output on Windows go to OutputDebugString instead of stdout, so it'll appear in the VS debug output window. This was SVN commit r6258. --- build/premake/premake.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/premake/premake.lua b/build/premake/premake.lua index 75820fd857..4695ba3f04 100755 --- a/build/premake/premake.lua +++ b/build/premake/premake.lua @@ -880,7 +880,7 @@ function setup_tests() package.testoptions = "--have-std" package.rootoptions = "--have-std" if OS == "windows" then - package.rootoptions = package.rootoptions .. " --gui=Win32Gui --runner=ParenPrinter" + package.rootoptions = package.rootoptions .. " --gui=Win32Gui --runner=Win32ODSPrinter" else package.rootoptions = package.rootoptions .. " --runner=ErrorPrinter" end