From 03bce7880d867b85e39616cf5d0f13e9850167c5 Mon Sep 17 00:00:00 2001 From: Pat Gavlin Date: Thu, 16 Mar 2017 16:37:16 -0700 Subject: Fix test failure detection when dumps are enabled. --- tests/runtest.cmd | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/runtest.cmd b/tests/runtest.cmd index d7f5713abd..58d4efbcf1 100644 --- a/tests/runtest.cmd +++ b/tests/runtest.cmd @@ -233,12 +233,13 @@ del %CORE_ROOT%\mscorlib.ni.dll set __BuildLogRootName=TestRunResults call :msbuild "%__ProjectFilesDir%\runtest.proj" /p:Runtests=true /clp:showcommandline +set __errorlevel=%errorlevel% if "%__CollectDumps%"=="true" ( python "%__DumplingHelperPath%" collect_dump %errorlevel% "%__CrashDumpFolder%" %__StartTime% "CoreCLR_Tests" ) -if errorlevel 1 ( +if %__errorlevel% GEQ 1 ( echo Test Run failed. Refer to the following: echo Html report: %__TestRunHtmlLog% exit /b 1 -- cgit v1.2.3