]> git.saurik.com Git - wxWidgets.git/commitdiff
Use "-t" option when running buildbot tests under Windows.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 12 May 2013 20:34:40 +0000 (20:34 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 12 May 2013 20:34:40 +0000 (20:34 +0000)
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

index 08362a5b2ed20770d6dd8dab723cde131e926c64..d725f9c5ad8788269527b2d30c3c7fde86b1ef23 100644 (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