summaryrefslogtreecommitdiff
path: root/tests/runtest.cmd
diff options
context:
space:
mode:
authorAndy Ayers <andya@microsoft.com>2015-11-11 10:29:17 -0800
committerAndy Ayers <andya@microsoft.com>2015-11-11 10:29:17 -0800
commit223cd2d839f7e20e698e9cf66d74501e1d418e31 (patch)
tree8398dbba8cdef48f71a58f4a619c9934e810ce29 /tests/runtest.cmd
parent077d5cb53bf9c0339cca6e2dc64e1d523987098d (diff)
downloadcoreclr-223cd2d839f7e20e698e9cf66d74501e1d418e31.tar.gz
coreclr-223cd2d839f7e20e698e9cf66d74501e1d418e31.tar.bz2
coreclr-223cd2d839f7e20e698e9cf66d74501e1d418e31.zip
Reduce volume of MSBuild logging when running tests via xunit
Diffstat (limited to 'tests/runtest.cmd')
-rw-r--r--tests/runtest.cmd4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runtest.cmd b/tests/runtest.cmd
index 7d9220b8a9..91b408e1db 100644
--- a/tests/runtest.cmd
+++ b/tests/runtest.cmd
@@ -138,12 +138,12 @@ if ERRORLEVEL 1 (
exit /b 0
:runtests
-%_buildprefix% %_msbuildexe% "%__ProjectFilesDir%runtest.proj" /p:NoBuild=true /nologo /maxcpucount /verbosity:minimal /nodeReuse:false /fileloggerparameters:Verbosity=diagnostic;LogFile="%__TestRunBuildLog%";Append %1 %_buildpostfix% /clp:showcommandline
+%_buildprefix% %_msbuildexe% "%__ProjectFilesDir%runtest.proj" /p:NoBuild=true /nologo /maxcpucount /verbosity:minimal /nodeReuse:false /fileloggerparameters: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=diagnostic;LogFile="%__XunitWrapperBuildLog%";Append %1 %_buildappend%%_buildpostfix%
+%_buildprefix% %_msbuildexe% "%__ProjectFilesDir%runtest.proj" /p:NoRun=true /nologo /maxcpucount /verbosity:minimal /nodeReuse:false /fileloggerparameters:LogFile="%__XunitWrapperBuildLog%";Append %1 %_buildappend%%_buildpostfix%
exit /b %ERRORLEVEL%
:Usage