From 28a08fba8ca34173eb18145637756d12e61cb775 Mon Sep 17 00:00:00 2001 From: Matt Ward Date: Sat, 3 Feb 2007 17:00:18 +0000 Subject: [PATCH] Fixed a problem where if a build fails before the unit test is run then the user was prevented from closing SharpDevelop since the code thought a build was still in progress. git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/2.1@2360 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61 --- src/AddIns/Misc/UnitTesting/Src/RunTestCommands.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/AddIns/Misc/UnitTesting/Src/RunTestCommands.cs b/src/AddIns/Misc/UnitTesting/Src/RunTestCommands.cs index ea41ad006a..8f645f520b 100644 --- a/src/AddIns/Misc/UnitTesting/Src/RunTestCommands.cs +++ b/src/AddIns/Misc/UnitTesting/Src/RunTestCommands.cs @@ -324,6 +324,7 @@ namespace ICSharpCode.UnitTesting if (TaskService.SomethingWentWrong && ErrorListPad.ShowAfterBuild) { ShowErrorList(); } + ProjectService.RaiseEventEndBuild(); } }