From 8864111f5b66d216a7b2fd6222e548d4a434abc1 Mon Sep 17 00:00:00 2001 From: Praburaj Date: Tue, 13 Jan 2015 16:28:54 -0800 Subject: [PATCH] Increasing wait time out on mono tests Right now since console logger is enabled there seems more delay in app start. --- test/E2ETests/Common/DeploymentUtility.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/E2ETests/Common/DeploymentUtility.cs b/test/E2ETests/Common/DeploymentUtility.cs index 584700ac1e..1e2d82b723 100644 --- a/test/E2ETests/Common/DeploymentUtility.cs +++ b/test/E2ETests/Common/DeploymentUtility.cs @@ -201,7 +201,7 @@ namespace E2ETests var hostProcess = Process.Start(startInfo); logger.WriteInformation("Started {0}. Process Id : {1}", hostProcess.MainModule.FileName, hostProcess.Id); - Thread.Sleep(5 * 1000); + Thread.Sleep(15 * 1000); //Clear the appbase so that it does not create issues with successive runs Environment.SetEnvironmentVariable("KRE_APPBASE", string.Empty);