From 35da42908695be5cb5e465ecaefd0620084743c0 Mon Sep 17 00:00:00 2001 From: Marc Khouzam Date: Wed, 21 May 2008 23:01:14 +0000 Subject: [PATCH] Bug 232357 Part of removing dependencies from cdt launching --- plugins/org.eclipse.dd.tests.gdb/META-INF/MANIFEST.MF | 1 - .../org/eclipse/dd/tests/gdb/framework/BaseTestCase.java | 6 +++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/plugins/org.eclipse.dd.tests.gdb/META-INF/MANIFEST.MF b/plugins/org.eclipse.dd.tests.gdb/META-INF/MANIFEST.MF index a6bb4590501..43b791b3101 100644 --- a/plugins/org.eclipse.dd.tests.gdb/META-INF/MANIFEST.MF +++ b/plugins/org.eclipse.dd.tests.gdb/META-INF/MANIFEST.MF @@ -13,7 +13,6 @@ Require-Bundle: org.eclipse.core.runtime, org.eclipse.dd.mi, org.junit4, org.eclipse.debug.core, - org.eclipse.cdt.debug.mi.core, org.eclipse.swt, org.eclipse.dd.gdb Bundle-ActivationPolicy: lazy diff --git a/plugins/org.eclipse.dd.tests.gdb/src/org/eclipse/dd/tests/gdb/framework/BaseTestCase.java b/plugins/org.eclipse.dd.tests.gdb/src/org/eclipse/dd/tests/gdb/framework/BaseTestCase.java index 5cce87ca0a3..f63cd3fd7d8 100644 --- a/plugins/org.eclipse.dd.tests.gdb/src/org/eclipse/dd/tests/gdb/framework/BaseTestCase.java +++ b/plugins/org.eclipse.dd.tests.gdb/src/org/eclipse/dd/tests/gdb/framework/BaseTestCase.java @@ -14,8 +14,8 @@ import java.util.HashMap; import java.util.Map; import org.eclipse.cdt.debug.core.ICDTLaunchConfigurationConstants; -import org.eclipse.cdt.debug.mi.core.IMILaunchConfigurationConstants; import org.eclipse.core.runtime.NullProgressMonitor; +import org.eclipse.dd.gdb.internal.provisional.IGDBLaunchConfigurationConstants; import org.eclipse.dd.gdb.internal.provisional.launching.GdbLaunch; import org.eclipse.dd.mi.service.command.events.MIStoppedEvent; import org.eclipse.debug.core.DebugPlugin; @@ -56,8 +56,8 @@ public class BaseTestCase { attrs.put(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_STOP_AT_MAIN, true); attrs.put(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_STOP_AT_MAIN_SYMBOL, ICDTLaunchConfigurationConstants.DEBUGGER_STOP_AT_MAIN_SYMBOL_DEFAULT); - attrs.put(IMILaunchConfigurationConstants.ATTR_DEBUG_NAME, "gdb"); - attrs.put(IMILaunchConfigurationConstants.ATTR_GDB_INIT, ".gdbinit"); + attrs.put(IGDBLaunchConfigurationConstants.ATTR_DEBUG_NAME, "gdb"); + attrs.put(IGDBLaunchConfigurationConstants.ATTR_GDB_INIT, ".gdbinit"); } @Before