From fd4572874e41ca3af803b0b2c71955505dd4bde5 Mon Sep 17 00:00:00 2001 From: Ajay Bhargav Baaskaran <ajbaaska@microsoft.com> Date: Mon, 5 Nov 2018 18:14:45 -0800 Subject: [PATCH] Increase timeout for msbuild processes and added better logging --- .../IntegrationTests/MSBuildProcessManager.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Microsoft.AspNetCore.Razor.Design.Test/IntegrationTests/MSBuildProcessManager.cs b/test/Microsoft.AspNetCore.Razor.Design.Test/IntegrationTests/MSBuildProcessManager.cs index b396ea8da5c..8704b876d3c 100644 --- a/test/Microsoft.AspNetCore.Razor.Design.Test/IntegrationTests/MSBuildProcessManager.cs +++ b/test/Microsoft.AspNetCore.Razor.Design.Test/IntegrationTests/MSBuildProcessManager.cs @@ -17,7 +17,7 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests TimeSpan? timeout = null, MSBuildProcessKind msBuildProcessKind = MSBuildProcessKind.Dotnet) { - timeout = timeout ?? TimeSpan.FromSeconds(60); + timeout = timeout ?? TimeSpan.FromSeconds(120); var processStartInfo = new ProcessStartInfo() { @@ -76,7 +76,7 @@ namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests // This is a timeout. process.Kill(); - throw new TimeoutException($"command '${process.StartInfo.FileName} {process.StartInfo.Arguments}' timed out after {timeout}."); + throw new TimeoutException($"command '${process.StartInfo.FileName} {process.StartInfo.Arguments}' timed out after {timeout}. Output: {output.ToString()}"); }); var waitTask = Task.Run(() => -- GitLab