From a0584f66babc0ccb5396aa3304602efb3643af8f Mon Sep 17 00:00:00 2001 From: Pat Gavlin Date: Thu, 16 Mar 2017 16:37:16 -0700 Subject: [PATCH] Fix test failure detection when dumps are enabled. Commit migrated from https://github.com/dotnet/coreclr/commit/03bce7880d867b85e39616cf5d0f13e9850167c5 --- src/coreclr/tests/runtest.cmd | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/coreclr/tests/runtest.cmd b/src/coreclr/tests/runtest.cmd index d7f5713..58d4efb 100644 --- a/src/coreclr/tests/runtest.cmd +++ b/src/coreclr/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 -- 2.7.4