X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7749be1236b6d430478bc68771842115242c932b..04a123c642b0fc589e29cdd507faf11b85973f79:/tests/runtests.bat?ds=sidebyside diff --git a/tests/runtests.bat b/tests/runtests.bat index 08362a5b2e..967e6f904e 100644 --- a/tests/runtests.bat +++ b/tests/runtests.bat @@ -20,7 +20,12 @@ set failure=0 for /d %%x in (*) do @( if exist %%x\test.exe ( - %%x\test.exe >tmp + echo. + echo ======================================================================== + echo Running non-GUI unit test + echo ======================================================================== + echo. + %%x\test.exe -t >tmp REM show the output of the test in the buildbot log: type tmp @@ -32,15 +37,19 @@ for /d %%x in (*) do @( REM separe the output of the test we just executed from the next one echo. - echo. echo ======================================================================== + echo Non-GUI test done echo ======================================================================== echo. - echo. ) if exist %%x\test_gui.exe ( - %%x\test_gui.exe >tmp + echo. + echo ======================================================================== + echo Running GUI unit test + echo ======================================================================== + echo. + %%x\test_gui.exe -t >tmp REM show the output of the test in the buildbot log: type tmp @@ -49,6 +58,12 @@ for /d %%x in (*) do @( REM (failure=1 is set if "OK" does not appear in the test output) type tmp | find "OK" >NUL if ERRORLEVEL 1 set failure=1 + + echo. + echo ======================================================================== + echo GUI test done + echo ======================================================================== + echo. ) )