summaryrefslogtreecommitdiff
path: root/tests/buildtest.cmd
diff options
context:
space:
mode:
authorMatt Mitchell <mmitche@microsoft.com>2015-07-07 11:38:11 -0700
committerMatt Mitchell <mmitche@microsoft.com>2015-07-07 11:38:11 -0700
commit8d8e27d6f6679619524402e58454c442e698ad4e (patch)
tree22f3dfbf7ff13dcb34772da4671b48d5b195a089 /tests/buildtest.cmd
parent6ddbc71bfcfa87df7b203808bbd62323aa4dfdaf (diff)
downloadcoreclr-8d8e27d6f6679619524402e58454c442e698ad4e.tar.gz
coreclr-8d8e27d6f6679619524402e58454c442e698ad4e.tar.bz2
coreclr-8d8e27d6f6679619524402e58454c442e698ad4e.zip
Improve the build throughput
Especially with the builds of the tests, the diag logging significantly reduces TP in the build and seems to reduce parallelism a bit too. Change this to normal.
Diffstat (limited to 'tests/buildtest.cmd')
-rw-r--r--tests/buildtest.cmd4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/buildtest.cmd b/tests/buildtest.cmd
index 3533144821..30228526c7 100644
--- a/tests/buildtest.cmd
+++ b/tests/buildtest.cmd
@@ -128,7 +128,7 @@ exit /b 1
REM Build CoreCLR
:BuildTestNativeComponents
-%_msbuildexe% "%__NativeTestIntermediatesDir%\install.vcxproj" %__MSBCleanBuildArgs% /nologo /maxcpucount /nodeReuse:false /p:Configuration=%__BuildType% /p:Platform=%__BuildArch% /fileloggerparameters:Verbosity=diag;LogFile="%__TestNativeBuildLog%"
+%_msbuildexe% "%__NativeTestIntermediatesDir%\install.vcxproj" %__MSBCleanBuildArgs% /nologo /maxcpucount /nodeReuse:false /p:Configuration=%__BuildType% /p:Platform=%__BuildArch% /fileloggerparameters:Verbosity=normal;LogFile="%__TestNativeBuildLog%"
IF NOT ERRORLEVEL 1 goto PerformManagedTestBuild
echo Native component build failed. Refer !__TestNativeBuildLog! for details.
exit /b 1
@@ -165,7 +165,7 @@ exit /b %ERRORLEVEL%
:build
-%_buildprefix% %_msbuildexe% "%__ProjectFilesDir%\build.proj" %__MSBCleanBuildArgs% /nologo /maxcpucount /verbosity:minimal /nodeReuse:false /fileloggerparameters:Verbosity=diag;LogFile="%__TestManagedBuildLog%";Append %* %_buildpostfix%
+%_buildprefix% %_msbuildexe% "%__ProjectFilesDir%\build.proj" %__MSBCleanBuildArgs% /nologo /maxcpucount /verbosity:minimal /nodeReuse:false /fileloggerparameters:Verbosity=normal;LogFile="%__TestManagedBuildLog%";Append %* %_buildpostfix%
IF ERRORLEVEL 1 echo Test build failed. Refer !__TestManagedBuildLog! for details && exit /b 1
exit /b 0