summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMatt Mitchell <mmitche@microsoft.com>2015-07-08 15:16:26 -0700
committerMatt Mitchell <mmitche@microsoft.com>2015-07-08 15:16:26 -0700
commit9945fc40cc7bbff5b26ff44b6bc74f5fdf93be71 (patch)
treec9b37fbcff8910e4f2d8504acc439e300d88594c /tests
parentee73e6ca2b5c5268c97d258e729bb489e6c76de3 (diff)
parent8d8e27d6f6679619524402e58454c442e698ad4e (diff)
downloadcoreclr-9945fc40cc7bbff5b26ff44b6bc74f5fdf93be71.tar.gz
coreclr-9945fc40cc7bbff5b26ff44b6bc74f5fdf93be71.tar.bz2
coreclr-9945fc40cc7bbff5b26ff44b6bc74f5fdf93be71.zip
Merge pull request #1211 from mmitche/improve-build-tp
Improve the build throughput
Diffstat (limited to 'tests')
-rw-r--r--tests/buildtest.cmd4
-rw-r--r--tests/runtest.cmd4
2 files changed, 4 insertions, 4 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
diff --git a/tests/runtest.cmd b/tests/runtest.cmd
index 2b6e8587b3..280bb46380 100644
--- a/tests/runtest.cmd
+++ b/tests/runtest.cmd
@@ -129,12 +129,12 @@ if ERRORLEVEL 1 (
)
:runtests
-%_buildprefix% %_msbuildexe% "%__ProjectFilesDir%runtest.proj" /p:NoBuild=true /nologo /maxcpucount /verbosity:minimal /nodeReuse:false /fileloggerparameters:Verbosity=diag;LogFile="%__TestRunBuildLog%";Append %1 %_buildpostfix% /clp:showcommandline
+%_buildprefix% %_msbuildexe% "%__ProjectFilesDir%runtest.proj" /p:NoBuild=true /nologo /maxcpucount /verbosity:minimal /nodeReuse:false /fileloggerparameters:Verbosity=normal;LogFile="%__TestRunBuildLog%";Append %1 %_buildpostfix% /clp:showcommandline
exit /b %ERRORLEVEL%
:PerformXunitWrapperBuild
-%_buildprefix% %_msbuildexe% "%__ProjectFilesDir%runtest.proj" /p:NoRun=true /nologo /maxcpucount /verbosity:minimal /nodeReuse:false /fileloggerparameters:Verbosity=diag;LogFile="%__XunitWrapperBuildLog%";Append %1 %_buildappend%%_buildpostfix%
+%_buildprefix% %_msbuildexe% "%__ProjectFilesDir%runtest.proj" /p:NoRun=true /nologo /maxcpucount /verbosity:minimal /nodeReuse:false /fileloggerparameters:Verbosity=normal;LogFile="%__XunitWrapperBuildLog%";Append %1 %_buildappend%%_buildpostfix%
exit /b %ERRORLEVEL%
:Usage