From 368e96ad32f6181b2c11c42177cc28f0f841ab29 Mon Sep 17 00:00:00 2001 From: Suhas Joshi Date: Wed, 17 Dec 2014 11:50:33 -0800 Subject: [PATCH] Fixes teamcity issue with Console.ReadLine() --- test/E2ETests/DeploymentUtility.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/E2ETests/DeploymentUtility.cs b/test/E2ETests/DeploymentUtility.cs index ae0b7f1163..98f8addb98 100644 --- a/test/E2ETests/DeploymentUtility.cs +++ b/test/E2ETests/DeploymentUtility.cs @@ -179,8 +179,9 @@ namespace E2ETests { FileName = monoPath, Arguments = string.Format("{0} {1} {2}", klrMonoManaged, applicationHost, startParameters.ServerType.ToString()), - UseShellExecute = true, - CreateNoWindow = true + UseShellExecute = false, + CreateNoWindow = true, + RedirectStandardInput = true }; var hostProcess = Process.Start(startInfo);