]> git.saurik.com Git - wxWidgets.git/commitdiff
try to remove /B from EXIT commands; prints a "separator" between test.exe and test_g...
authorFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Mon, 23 Mar 2009 10:01:13 +0000 (10:01 +0000)
committerFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Mon, 23 Mar 2009 10:01:13 +0000 (10:01 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59757 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

tests/runtests.bat

index 3af08c67a638f99d0ec888fe66c7a25dda34c2a6..9ff4f2b85fc09b96d05e73e217c930446591f600 100644 (file)
@@ -14,7 +14,16 @@ for /d %%x in (*) do @(
     if exist %%x\test.exe (
         %%x\test.exe
         if %errorlevel% GEQ 1 set failure=1
+
+        REM separe the output of the test we just executed from the next one
+        echo.
+        echo.
+        echo ========================================================================
+        echo ========================================================================
+        echo.
+        echo.
     )
+    
     if exist %%x\test_gui.exe (
         %%x\test_gui.exe
         if %errorlevel% GEQ 1 set failure=1
@@ -22,10 +31,10 @@ for /d %%x in (*) do @(
 )
 
 REM exit with code 1 if any of the test failed
-if %failure% EQU 1 exit /b 1
+if %failure% EQU 1 exit 1
 
 REM remove the failure env var:
 set failure=
 
 REM exit with code 0 (all tests passed successfully)
-exit /b 0
+exit 0