File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
test/dotnet.Tests/CommandTests/Run Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1547,10 +1547,10 @@ Hello from {programName}
15471547 // Check that csc args between MSBuild run and CSC-only run are equivalent.
15481548 var normalizedCscOnlyArgs = cscOnlyCallArgs
15491549 . Select ( static a => NormalizePath ( RemoveQuotes ( a ) ) ) ;
1550- Log . WriteLine ( "CSC-only vs MSBuild args:" + Environment . NewLine +
1551- string . Join ( Environment . NewLine , normalizedCscOnlyArgs
1552- . Zip ( msbuildArgsToVerify )
1553- . Select ( p => $ " { p . First } \t { p . Second } " ) ) ) ;
1550+ Log . WriteLine ( "CSC-only args:" ) ;
1551+ Log . WriteLine ( string . Join ( Environment . NewLine , normalizedCscOnlyArgs ) ) ;
1552+ Log . WriteLine ( "MSBuild args:" ) ;
1553+ Log . WriteLine ( string . Join ( Environment . NewLine , msbuildArgsToVerify ) ) ;
15541554 normalizedCscOnlyArgs . Should ( ) . Equal ( msbuildArgsToVerify ) ;
15551555
15561556 static CompilerCall findCompilerCall ( string binaryLogPath )
You can’t perform that action at this time.
0 commit comments