From 9df0920de1bad8c9e8501935c38cac09518d4658 Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Wed, 9 Nov 2016 13:29:27 -0800 Subject: [PATCH] tools: run-tests: always do leak test (even on failures) --- tools/run-tests.bat | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/run-tests.bat b/tools/run-tests.bat index 2f36e538..38d253d2 100644 --- a/tools/run-tests.bat +++ b/tools/run-tests.bat @@ -93,10 +93,9 @@ waitfor 7BF47D72F6664550B03248ECFE77C7DD /t 3 2>nul set /a total=testpass+testfail echo === Total: %testpass%/%total% -if not %testfail%==0 goto fail - call :leak-test if !ERRORLEVEL! neq 0 goto fail +if not %testfail%==0 goto fail exit /b 0