diff options
author | Stephan Herrmann | 2010-07-20 08:25:40 +0000 |
---|---|---|
committer | Stephan Herrmann | 2010-07-20 08:25:40 +0000 |
commit | 31de3b7065a11d54f3f4cdd2cdb1512a8ae0d34e (patch) | |
tree | f91982ae7c76936fb5f0127048f955a70ea16c91 /testplugins/org.eclipse.objectteams.otdt.debug.tests | |
parent | b7018484955118532a7a7b8513adac53d9c715a5 (diff) | |
download | org.eclipse.objectteams-31de3b7065a11d54f3f4cdd2cdb1512a8ae0d34e.tar.gz org.eclipse.objectteams-31de3b7065a11d54f3f4cdd2cdb1512a8ae0d34e.tar.xz org.eclipse.objectteams-31de3b7065a11d54f3f4cdd2cdb1512a8ae0d34e.zip |
corrections after repackaging the OTRE, fixes regressions in StratumTests and actually OT-launching.
Diffstat (limited to 'testplugins/org.eclipse.objectteams.otdt.debug.tests')
-rw-r--r-- | testplugins/org.eclipse.objectteams.otdt.debug.tests/src/org/eclipse/objectteams/otdt/debug/tests/AbstractOTDTDebugTest.java | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/testplugins/org.eclipse.objectteams.otdt.debug.tests/src/org/eclipse/objectteams/otdt/debug/tests/AbstractOTDTDebugTest.java b/testplugins/org.eclipse.objectteams.otdt.debug.tests/src/org/eclipse/objectteams/otdt/debug/tests/AbstractOTDTDebugTest.java index 3a389e522..df4916261 100644 --- a/testplugins/org.eclipse.objectteams.otdt.debug.tests/src/org/eclipse/objectteams/otdt/debug/tests/AbstractOTDTDebugTest.java +++ b/testplugins/org.eclipse.objectteams.otdt.debug.tests/src/org/eclipse/objectteams/otdt/debug/tests/AbstractOTDTDebugTest.java @@ -1383,15 +1383,7 @@ public abstract class AbstractOTDTDebugTest extends TestCase implements IEvalua * Creates a shared launch configuration for the type with the given name.
*/
protected void createLaunchConfiguration(String mainTypeName) throws Exception {
-//{ObjectTeams: make launch type configurable:
- createLaunchConfiguration(mainTypeName, IJavaLaunchConfigurationConstants.ID_JAVA_APPLICATION);
- }
- protected void createLaunchConfiguration(String mainTypeName, String launchType) throws Exception {
- ILaunchConfigurationType type = getLaunchManager().getLaunchConfigurationType(launchType);
-/*orig:
ILaunchConfigurationType type = getLaunchManager().getLaunchConfigurationType(IJavaLaunchConfigurationConstants.ID_JAVA_APPLICATION);
- :giro */
-// SH}
ILaunchConfigurationWorkingCopy config = type.newInstance(getJavaProject().getProject().getFolder("launchConfigurations"), mainTypeName);
config.setAttribute(IJavaLaunchConfigurationConstants.ATTR_MAIN_TYPE_NAME, mainTypeName);
config.setAttribute(IJavaLaunchConfigurationConstants.ATTR_PROJECT_NAME, getJavaProject().getElementName());
|