summaryrefslogtreecommitdiff
path: root/build-test.cmd
diff options
context:
space:
mode:
authorAndy Ayers <andya@microsoft.com>2016-10-31 22:57:25 -0700
committerJan Kotas <jkotas@microsoft.com>2016-10-31 22:57:25 -0700
commitd3e9e0013c551ec6741af0a45eb6b234089afe74 (patch)
treeb362bd311eed26d890cd03e2b11778e3d04e8e63 /build-test.cmd
parentd347f4dfd1be33ac2745e3eaca4dfec964b5db99 (diff)
downloadcoreclr-d3e9e0013c551ec6741af0a45eb6b234089afe74.tar.gz
coreclr-d3e9e0013c551ec6741af0a45eb6b234089afe74.tar.bz2
coreclr-d3e9e0013c551ec6741af0a45eb6b234089afe74.zip
Use normal verbosity logging when building tests (#7921)
Test build log file is ~4GB with diag verbosity. With normal it's about 20MB. This seems to speed up the test build for me considerably. See #7916.
Diffstat (limited to 'build-test.cmd')
-rw-r--r--build-test.cmd2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-test.cmd b/build-test.cmd
index baa12ce207..272e133004 100644
--- a/build-test.cmd
+++ b/build-test.cmd
@@ -235,7 +235,7 @@ set __BuildLogRootName=Tests_Managed
set __BuildLog=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.log
set __BuildWrn=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.wrn
set __BuildErr=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.err
-set __msbuildLog=/flp:Verbosity=diag;LogFile="%__BuildLog%"
+set __msbuildLog=/flp:Verbosity=normal;LogFile="%__BuildLog%"
set __msbuildWrn=/flp1:WarningsOnly;LogFile="%__BuildWrn%"
set __msbuildErr=/flp2:ErrorsOnly;LogFile="%__BuildErr%"