Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Duft2016-12-06 08:03:50 +0000
committerSarika Sinha2017-01-12 10:28:06 +0000
commitb3ecd5d763b119bf9136c18b0d52385197bd643b (patch)
tree6dd01648c40d525c705bb7e95f03e14a40115f14 /org.eclipse.debug.core
parent0548d360ff223dcd7dcde4ee0650a56c0807a2c3 (diff)
downloadeclipse.platform.debug-b3ecd5d763b119bf9136c18b0d52385197bd643b.tar.gz
eclipse.platform.debug-b3ecd5d763b119bf9136c18b0d52385197bd643b.tar.xz
eclipse.platform.debug-b3ecd5d763b119bf9136c18b0d52385197bd643b.zip
Initial contribution of LaunchGroupTestsY20170112-1300Y20170112-1000I20170112-2000
These contain basic test for the existing launch group functionality. No tests for the additional functionality are provided in this commit. Test for additional functionality will be in the according commits. This commit also fixes a bug in the existing functionality that marks a group as terminated too early. Bug: 508420 Change-Id: I1e1e0ae512384665f926d7225b55c701dca92409 Signed-off-by: Markus Duft <markus.duft@ssi-schaefer.com>
Diffstat (limited to 'org.eclipse.debug.core')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/internal/core/groups/GroupLaunch.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/groups/GroupLaunch.java b/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/groups/GroupLaunch.java
index df314a18a..2c1b519c6 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/groups/GroupLaunch.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/groups/GroupLaunch.java
@@ -99,7 +99,9 @@ public class GroupLaunch extends Launch implements ILaunchesListener2 {
return false;
}
}
- return true;
+ return fLaunched; // we're done only if we're already done launching.
+ // this is required for the WAIT_FOR_TERMINATION
+ // mode.
}
/**

Back to the top