From: Francesco Montorsi Date: Sat, 21 Mar 2009 13:49:20 +0000 (+0000) Subject: use /b option with the EXIT command X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/92de7654e9a394421511cce5ff6f337ce47a5622 use /b option with the EXIT command git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59695 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/tests/runtests.bat b/tests/runtests.bat index d6c747187e..7c537ccacd 100644 --- a/tests/runtests.bat +++ b/tests/runtests.bat @@ -19,10 +19,10 @@ for /d %%x in (*) do @( ) REM exit with code 1 if any of the test failed -if %failure% EQU 1 exit 1 +if %failure% EQU 1 exit /b 1 REM remove the failure env var: set failure= REM exit with code 0 (all tests passed successfully) -exit 0 +exit /b 0