Use normal verbosity logging when building tests (dotnet/coreclr#7921)
authorAndy Ayers <andya@microsoft.com>
Tue, 1 Nov 2016 05:57:25 +0000 (22:57 -0700)
committerJan Kotas <jkotas@microsoft.com>
Tue, 1 Nov 2016 05:57:25 +0000 (22:57 -0700)
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 dotnet/coreclr#7916.

Commit migrated from https://github.com/dotnet/coreclr/commit/d3e9e0013c551ec6741af0a45eb6b234089afe74

src/coreclr/build-test.cmd

index baa12ce..272e133 100644 (file)
@@ -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%"