Trying to redirect the stdinput as well to see if this succeeds on CI

This commit is contained in:
Praburaj 2015-04-20 16:48:37 -07:00
parent f92b1f36e1
commit 1a4dc9488a
1 changed files with 3 additions and 1 deletions

View File

@ -60,7 +60,9 @@ namespace Microsoft.AspNet.Server.Testing
UseShellExecute = false, UseShellExecute = false,
CreateNoWindow = true, CreateNoWindow = true,
RedirectStandardError = true, RedirectStandardError = true,
RedirectStandardOutput = true RedirectStandardOutput = true,
// Trying a work around for https://github.com/aspnet/Hosting/issues/140.
RedirectStandardInput = true
}; };
AddEnvironmentVariablesToProcess(startInfo); AddEnvironmentVariablesToProcess(startInfo);