From 1cb4d74fb5097e013016e07af4615b703199dfff Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 12 May 2013 20:34:40 +0000 Subject: [PATCH] Use "-t" option when running buildbot tests under Windows. Use "-t" in runtests.bar used by Windows build slaves to get more information about the test failures, notably if they crash before completing. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73969 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- tests/runtests.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/runtests.bat b/tests/runtests.bat index 08362a5b2e..d725f9c5ad 100644 --- a/tests/runtests.bat +++ b/tests/runtests.bat @@ -20,7 +20,7 @@ set failure=0 for /d %%x in (*) do @( if exist %%x\test.exe ( - %%x\test.exe >tmp + %%x\test.exe -t >tmp REM show the output of the test in the buildbot log: type tmp @@ -40,7 +40,7 @@ for /d %%x in (*) do @( ) if exist %%x\test_gui.exe ( - %%x\test_gui.exe >tmp + %%x\test_gui.exe -t >tmp REM show the output of the test in the buildbot log: type tmp