aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/internal_ci/windows/grpc_run_tests_matrix.bat
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2017-09-18 16:28:03 +0200
committerGravatar GitHub <noreply@github.com>2017-09-18 16:28:03 +0200
commita5f46e29bcee3068f5ec6691b7e06cf944430881 (patch)
tree3dc4978b3f5bad6482a2b67dc0925e8a3ca11b2e /tools/internal_ci/windows/grpc_run_tests_matrix.bat
parentc8cbddae0be904713bcf39d1363b27134adbfc3b (diff)
parent05eadf21e05d521d73a05babf7c8f45218728355 (diff)
Merge pull request #12477 from jtattermusch/reveal_hangs
Reveal processes left by our test suite.
Diffstat (limited to 'tools/internal_ci/windows/grpc_run_tests_matrix.bat')
-rw-r--r--tools/internal_ci/windows/grpc_run_tests_matrix.bat10
1 files changed, 6 insertions, 4 deletions
diff --git a/tools/internal_ci/windows/grpc_run_tests_matrix.bat b/tools/internal_ci/windows/grpc_run_tests_matrix.bat
index 08d834f8b0..10627add25 100644
--- a/tools/internal_ci/windows/grpc_run_tests_matrix.bat
+++ b/tools/internal_ci/windows/grpc_run_tests_matrix.bat
@@ -17,8 +17,10 @@ cd /d %~dp0\..\..\..
call tools/internal_ci/helper_scripts/prepare_build_windows.bat
-python tools/run_tests/run_tests_matrix.py %RUN_TESTS_FLAGS% || goto :error
-goto :EOF
+python tools/run_tests/run_tests_matrix.py %RUN_TESTS_FLAGS%
+set RUNTESTS_EXITCODE=%errorlevel%
-:error
-exit /b %errorlevel%
+@rem Reveal leftover processes that might be left behind by the build
+tasklist /V
+
+exit /b %RUNTESTS_EXITCODE%