Skip to content
This repository has been archived by the owner on Oct 4, 2021. It is now read-only.

Commit

Permalink
Merge pull request #940 from iainx/master
Browse files Browse the repository at this point in the history
[Test Framework] Delay the test framework startup until MD has finish…
  • Loading branch information
iain committed Jun 10, 2015
2 parents ca5f9c2 + 4c8373f commit 62efa34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -82,7 +82,7 @@ public void StartApplication (string file = null, string args = null, IDictionar

process = Process.Start (pi);

if (!waitEvent.WaitOne (15000)) {
if (!waitEvent.WaitOne (120000)) {
try {
process.Kill ();
} catch { }
Expand Down
2 changes: 1 addition & 1 deletion main/src/core/MonoDevelop.Ide/MonoDevelop.Ide/Ide.cs
Expand Up @@ -177,7 +177,6 @@ public static void Initialize (IProgressMonitor monitor)
commandService = new CommandManager ();
ideServices = new IdeServices ();
CustomToolService.Init ();
AutoTestService.Start (commandService, Preferences.EnableAutomatedTesting);

commandService.CommandTargetScanStarted += CommandServiceCommandTargetScanStarted;
commandService.CommandTargetScanFinished += CommandServiceCommandTargetScanFinished;
Expand Down Expand Up @@ -294,6 +293,7 @@ public static void Initialize (IProgressMonitor monitor)
IdeApp.Preferences.EnableInstrumentationChanged += delegate {
UpdateInstrumentationIcon ();
};
AutoTestService.Start (commandService, Preferences.EnableAutomatedTesting);
AutoTestService.NotifyEvent ("MonoDevelop.Ide.IdeStart");
}

Expand Down

0 comments on commit 62efa34

Please sign in to comment.