From 4af8d52a23710b3e71674341291bdf046f0c4ed2 Mon Sep 17 00:00:00 2001 From: Faizan Ahmad Date: Wed, 2 Nov 2016 18:11:36 +0530 Subject: [PATCH] Updated the version of microsoft.testplatform.cli package --- build/Microsoft.DotNet.Cli.Compile.targets | 2 +- src/redist/redist.csproj | 2 +- ...nDotnetTest3BuildsAndRunsTestFromCsprojForMultipleTFM.cs | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/build/Microsoft.DotNet.Cli.Compile.targets b/build/Microsoft.DotNet.Cli.Compile.targets index 33dc22518..cc79410e7 100644 --- a/build/Microsoft.DotNet.Cli.Compile.targets +++ b/build/Microsoft.DotNet.Cli.Compile.targets @@ -97,7 +97,7 @@ - + diff --git a/src/redist/redist.csproj b/src/redist/redist.csproj index d459c888c..59fd617c9 100644 --- a/src/redist/redist.csproj +++ b/src/redist/redist.csproj @@ -33,7 +33,7 @@ 4.0.0-rc-2037 - 15.0.0-preview-20161101-02 + 15.0.0-preview-20161102-02 15.0.0-preview-20161028-03 diff --git a/test/dotnet-test.Tests/GivenDotnetTest3BuildsAndRunsTestFromCsprojForMultipleTFM.cs b/test/dotnet-test.Tests/GivenDotnetTest3BuildsAndRunsTestFromCsprojForMultipleTFM.cs index 8a5373393..d37ab18d3 100644 --- a/test/dotnet-test.Tests/GivenDotnetTest3BuildsAndRunsTestFromCsprojForMultipleTFM.cs +++ b/test/dotnet-test.Tests/GivenDotnetTest3BuildsAndRunsTestFromCsprojForMultipleTFM.cs @@ -90,7 +90,7 @@ namespace Microsoft.DotNet.Cli.Test.Tests // Call test CommandResult result = new DotnetTestCommand() .WithWorkingDirectory(testProjectDirectory) - .ExecuteWithCapturedOutput(); + .ExecuteWithCapturedOutput("--diag LogFile2.txt"); try { @@ -111,8 +111,8 @@ namespace Microsoft.DotNet.Cli.Test.Tests Console.WriteLine("*********************************Xunit StdErr****************************************************************"); Console.WriteLine(result.StdErr.ToString()); - string logfile1 = Path.Combine(testProjectDirectory, "LogFile.txt"); - string[] logfile2 = Directory.GetFiles(testProjectDirectory, "LogFile.host.*"); + string logfile1 = Path.Combine(testProjectDirectory, "LogFile2.txt"); + string[] logfile2 = Directory.GetFiles(testProjectDirectory, "LogFile2.host.*"); Console.WriteLine("**********************************Xunit Vstest.console Log****************************************************************"); Console.WriteLine(File.ReadAllText(logfile1));