Fix test failure detection when dumps are enabled.
authorPat Gavlin <pagavlin@microsoft.com>
Thu, 16 Mar 2017 23:37:16 +0000 (16:37 -0700)
committerPat Gavlin <pagavlin@microsoft.com>
Thu, 16 Mar 2017 23:41:21 +0000 (16:41 -0700)
Commit migrated from https://github.com/dotnet/coreclr/commit/03bce7880d867b85e39616cf5d0f13e9850167c5

src/coreclr/tests/runtest.cmd

index d7f5713..58d4efb 100644 (file)
@@ -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