1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Bug 232357

Part of removing dependencies from cdt launching
This commit is contained in:
Marc Khouzam 2008-05-21 23:01:14 +00:00
parent 09d00efe1e
commit 35da429086
2 changed files with 3 additions and 4 deletions

View file

@ -13,7 +13,6 @@ Require-Bundle: org.eclipse.core.runtime,
org.eclipse.dd.mi, org.eclipse.dd.mi,
org.junit4, org.junit4,
org.eclipse.debug.core, org.eclipse.debug.core,
org.eclipse.cdt.debug.mi.core,
org.eclipse.swt, org.eclipse.swt,
org.eclipse.dd.gdb org.eclipse.dd.gdb
Bundle-ActivationPolicy: lazy Bundle-ActivationPolicy: lazy

View file

@ -14,8 +14,8 @@ import java.util.HashMap;
import java.util.Map; import java.util.Map;
import org.eclipse.cdt.debug.core.ICDTLaunchConfigurationConstants; import org.eclipse.cdt.debug.core.ICDTLaunchConfigurationConstants;
import org.eclipse.cdt.debug.mi.core.IMILaunchConfigurationConstants;
import org.eclipse.core.runtime.NullProgressMonitor; 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.gdb.internal.provisional.launching.GdbLaunch;
import org.eclipse.dd.mi.service.command.events.MIStoppedEvent; import org.eclipse.dd.mi.service.command.events.MIStoppedEvent;
import org.eclipse.debug.core.DebugPlugin; 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, true);
attrs.put(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_STOP_AT_MAIN_SYMBOL, ICDTLaunchConfigurationConstants.DEBUGGER_STOP_AT_MAIN_SYMBOL_DEFAULT); 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(IGDBLaunchConfigurationConstants.ATTR_DEBUG_NAME, "gdb");
attrs.put(IMILaunchConfigurationConstants.ATTR_GDB_INIT, ".gdbinit"); attrs.put(IGDBLaunchConfigurationConstants.ATTR_GDB_INIT, ".gdbinit");
} }
@Before @Before