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
This commit is contained in:
Vadim Zeitlin 2013-05-12 20:34:40 +00:00
parent 5ec34ab09c
commit 1cb4d74fb5

View File

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