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.
This commit is contained in:
Ykkrosh 2008-07-19 19:00:32 +00:00
parent e063542a5f
commit 4a57fed5a7

View File

@ -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