Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit eadd0c2

Browse files
committed
Reduce arm/armlb/arm64 R2R test crossgen logging verbosity
1 parent 3386dc8 commit eadd0c2

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

netci.groovy

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2567,16 +2567,16 @@ Constants.allScenarios.each { scenario ->
25672567
if (isR2RScenario(scenario)) {
25682568
// Crossgen the framework assemblies.
25692569
buildCommands += """
2570-
for %%F in (%CORE_ROOT%\\*.dll) do call :PrecompileAssembly "%CORE_ROOT%" "%%F" %%~nxF
2571-
goto skip_PrecompileAssembly
2570+
@for %%F in (%CORE_ROOT%\\*.dll) do @call :PrecompileAssembly "%CORE_ROOT%" "%%F" %%~nxF
2571+
@goto skip_PrecompileAssembly
25722572
25732573
:PrecompileAssembly
2574-
REM Skip mscorlib since it is already precompiled.
2575-
if /I "%3" == "mscorlib.dll" exit /b 0
2576-
if /I "%3" == "mscorlib.ni.dll" exit /b 0
2574+
@REM Skip mscorlib since it is already precompiled.
2575+
@if /I "%3" == "mscorlib.dll" exit /b 0
2576+
@if /I "%3" == "mscorlib.ni.dll" exit /b 0
25772577
2578-
"%CORE_ROOT%\\crossgen.exe" /Platform_Assemblies_Paths "%CORE_ROOT%" "%2" >nul 2>nul
2579-
if "%errorlevel%" == "-2146230517" (
2578+
"%CORE_ROOT%\\crossgen.exe" /Platform_Assemblies_Paths "%CORE_ROOT%" %2 >nul 2>nul
2579+
@if "%errorlevel%" == "-2146230517" (
25802580
echo %2 is not a managed assembly.
25812581
) else if "%errorlevel%" == "-2146234344" (
25822582
echo %2 is not a managed assembly.
@@ -2585,7 +2585,7 @@ if "%errorlevel%" == "-2146230517" (
25852585
) else (
25862586
echo Precompiled %2
25872587
)
2588-
exit /b 0
2588+
@exit /b 0
25892589
25902590
:skip_PrecompileAssembly
25912591
"""

0 commit comments

Comments
 (0)