summaryrefslogtreecommitdiff
path: root/test/partest.bat
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2011-12-09 22:33:01 +0100
committerEugene Burmako <xeno.by@gmail.com>2011-12-09 22:33:01 +0100
commitd718a7c7f31afee174958f63d23ede87394a7a4a (patch)
tree1a6700510487eea58e6ccb77c07262402e2baac3 /test/partest.bat
parentb6617b091da1ac25c78c1e1323d4d3c9fad8abd7 (diff)
downloadscala-d718a7c7f31afee174958f63d23ede87394a7a4a.tar.gz
scala-d718a7c7f31afee174958f63d23ede87394a7a4a.tar.bz2
scala-d718a7c7f31afee174958f63d23ede87394a7a4a.zip
Batch files no longer swallow exit codes
Usually scripts like scala.bat and scalac.bat correctly propagate exit codes from underlying Java invocations. However, if you run these scripts as follows: "cmd /c scala ...", then errorlevel gets swallowed. This simple patch fixes the aforementioned problem. Fixes SI-5295, no review.
Diffstat (limited to 'test/partest.bat')
-rwxr-xr-xtest/partest.bat1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/partest.bat b/test/partest.bat
index 0b3f5fbf33..4c97a53122 100755
--- a/test/partest.bat
+++ b/test/partest.bat
@@ -101,3 +101,4 @@ goto end
:end
if "%OS%"=="Windows_NT" @endlocal
+exit /b %errorlevel%