mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Bug 346789: Remote JUnits don't work anymore
This commit is contained in:
parent
ad1982ec67
commit
6281a85b7b
9 changed files with 96 additions and 92 deletions
|
@ -0,0 +1,32 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
* Copyright (c) 2011 Ericsson and others.
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Ericsson - Initial Implementation
|
||||||
|
*******************************************************************************/
|
||||||
|
package org.eclipse.cdt.tests.dsf.gdb.framework;
|
||||||
|
|
||||||
|
import org.eclipse.cdt.debug.core.ICDTLaunchConfigurationConstants;
|
||||||
|
import org.eclipse.cdt.dsf.gdb.IGDBLaunchConfigurationConstants;
|
||||||
|
import org.junit.AfterClass;
|
||||||
|
import org.junit.BeforeClass;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This base class sets the attributes necessary to do a
|
||||||
|
* remote debugging session.
|
||||||
|
*/
|
||||||
|
public class BaseRemoteSuite {
|
||||||
|
@BeforeClass
|
||||||
|
public static void beforeClassMethod() {
|
||||||
|
BaseTestCase.setGlobalLaunchAttribute(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_START_MODE,
|
||||||
|
IGDBLaunchConfigurationConstants.DEBUGGER_MODE_REMOTE);
|
||||||
|
}
|
||||||
|
@AfterClass
|
||||||
|
public static void afterClassMethod() {
|
||||||
|
BaseTestCase.removeGlobalLaunchAttribute(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_START_MODE);
|
||||||
|
}
|
||||||
|
}
|
|
@ -59,8 +59,20 @@ public class BaseTestCase {
|
||||||
private static final String DEFAULT_TEST_APP = "data/launch/bin/GDBMIGenericTestApp";
|
private static final String DEFAULT_TEST_APP = "data/launch/bin/GDBMIGenericTestApp";
|
||||||
|
|
||||||
private static GdbLaunch fLaunch;
|
private static GdbLaunch fLaunch;
|
||||||
private static Map<String, Object> attrs;
|
|
||||||
private static Process gdbserverProc;
|
// The set of attributes used for the launch
|
||||||
|
// These are seset to their default whenever a new class
|
||||||
|
// of tests is started.
|
||||||
|
private static Map<String, Object> launchAttributes;
|
||||||
|
|
||||||
|
// A set of global launch attributes which are not
|
||||||
|
// reset when we load a new class of tests.
|
||||||
|
// This allows a Suite to set an attribute
|
||||||
|
// The suite is reponsible for clearing those attributes
|
||||||
|
// once it is finished
|
||||||
|
private static Map<String, Object> globalLaunchAttributes;
|
||||||
|
|
||||||
|
private static Process gdbserverProc;
|
||||||
|
|
||||||
/** The MI event associated with the breakpoint at main() */
|
/** The MI event associated with the breakpoint at main() */
|
||||||
private MIStoppedEvent fInitialStoppedEvent;
|
private MIStoppedEvent fInitialStoppedEvent;
|
||||||
|
@ -74,7 +86,20 @@ public class BaseTestCase {
|
||||||
public GdbLaunch getGDBLaunch() { return fLaunch; }
|
public GdbLaunch getGDBLaunch() { return fLaunch; }
|
||||||
|
|
||||||
public static void setLaunchAttribute(String key, Object value) {
|
public static void setLaunchAttribute(String key, Object value) {
|
||||||
attrs.put(key, value);
|
launchAttributes.put(key, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void setGlobalLaunchAttribute(String key, Object value) {
|
||||||
|
if (globalLaunchAttributes == null) {
|
||||||
|
globalLaunchAttributes = new HashMap<String, Object>();
|
||||||
|
}
|
||||||
|
globalLaunchAttributes.put(key, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void removeGlobalLaunchAttribute(String key) {
|
||||||
|
if (globalLaunchAttributes != null) {
|
||||||
|
globalLaunchAttributes.remove(key);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public synchronized MIStoppedEvent getInitialStoppedEvent() { return fInitialStoppedEvent; }
|
public synchronized MIStoppedEvent getInitialStoppedEvent() { return fInitialStoppedEvent; }
|
||||||
|
@ -119,31 +144,34 @@ public class BaseTestCase {
|
||||||
|
|
||||||
@BeforeClass
|
@BeforeClass
|
||||||
public static void baseBeforeClassMethod() {
|
public static void baseBeforeClassMethod() {
|
||||||
// Must clear all the attributes, because some tests change them.
|
// Clear all launch attributes before starting a new class of tests
|
||||||
attrs = new HashMap<String, Object>();
|
launchAttributes = new HashMap<String, Object>();
|
||||||
|
|
||||||
// Setup information for the launcher
|
// Setup information for the launcher
|
||||||
attrs.put(ICDTLaunchConfigurationConstants.ATTR_PROGRAM_NAME, DEFAULT_TEST_APP);
|
launchAttributes.put(ICDTLaunchConfigurationConstants.ATTR_PROGRAM_NAME, DEFAULT_TEST_APP);
|
||||||
|
|
||||||
attrs.put(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_STOP_AT_MAIN, true);
|
launchAttributes.put(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_STOP_AT_MAIN, true);
|
||||||
attrs.put(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_STOP_AT_MAIN_SYMBOL, ICDTLaunchConfigurationConstants.DEBUGGER_STOP_AT_MAIN_SYMBOL_DEFAULT);
|
launchAttributes.put(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_STOP_AT_MAIN_SYMBOL, ICDTLaunchConfigurationConstants.DEBUGGER_STOP_AT_MAIN_SYMBOL_DEFAULT);
|
||||||
attrs.put(IGDBLaunchConfigurationConstants.ATTR_GDB_INIT, ".gdbinit");
|
launchAttributes.put(IGDBLaunchConfigurationConstants.ATTR_GDB_INIT, ".gdbinit");
|
||||||
|
|
||||||
if (attrs.get(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_START_MODE) == null) {
|
if (launchAttributes.get(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_START_MODE) == null) {
|
||||||
attrs.put(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_START_MODE, ICDTLaunchConfigurationConstants.DEBUGGER_MODE_RUN );
|
launchAttributes.put(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_START_MODE, ICDTLaunchConfigurationConstants.DEBUGGER_MODE_RUN );
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set these up in case we will be running Remote tests. They will be ignored if we don't
|
// Set these up in case we will be running Remote tests. They will be ignored if we don't
|
||||||
attrs.put(ATTR_DEBUG_SERVER_NAME, "gdbserver");
|
launchAttributes.put(ATTR_DEBUG_SERVER_NAME, "gdbserver");
|
||||||
attrs.put(IGDBLaunchConfigurationConstants.ATTR_REMOTE_TCP, true);
|
launchAttributes.put(IGDBLaunchConfigurationConstants.ATTR_REMOTE_TCP, true);
|
||||||
attrs.put(IGDBLaunchConfigurationConstants.ATTR_HOST, "localhost");
|
launchAttributes.put(IGDBLaunchConfigurationConstants.ATTR_HOST, "localhost");
|
||||||
attrs.put(IGDBLaunchConfigurationConstants.ATTR_PORT, "9999");
|
launchAttributes.put(IGDBLaunchConfigurationConstants.ATTR_PORT, "9999");
|
||||||
|
|
||||||
|
// Set the global launch attributes
|
||||||
|
launchAttributes.putAll(globalLaunchAttributes);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
public void baseBeforeMethod() throws Exception {
|
public void baseBeforeMethod() throws Exception {
|
||||||
System.out.println("====================================================================================================");
|
System.out.println("====================================================================================================");
|
||||||
System.out.println("Running test: " + testName.getMethodName() + " using GDB: " + attrs.get(IGDBLaunchConfigurationConstants.ATTR_DEBUG_NAME));
|
System.out.println("Running test: " + testName.getMethodName() + " using GDB: " + launchAttributes.get(IGDBLaunchConfigurationConstants.ATTR_DEBUG_NAME));
|
||||||
System.out.println("====================================================================================================");
|
System.out.println("====================================================================================================");
|
||||||
|
|
||||||
// First check if we should launch gdbserver in the case of a remote session
|
// First check if we should launch gdbserver in the case of a remote session
|
||||||
|
@ -157,7 +185,7 @@ public class BaseTestCase {
|
||||||
null,
|
null,
|
||||||
launchMgr.generateLaunchConfigurationName("Test Launch")); //$NON-NLS-1$
|
launchMgr.generateLaunchConfigurationName("Test Launch")); //$NON-NLS-1$
|
||||||
assert lcWorkingCopy != null;
|
assert lcWorkingCopy != null;
|
||||||
lcWorkingCopy.setAttributes(attrs);
|
lcWorkingCopy.setAttributes(launchAttributes);
|
||||||
|
|
||||||
final ILaunchConfiguration lc = lcWorkingCopy.doSave();
|
final ILaunchConfiguration lc = lcWorkingCopy.doSave();
|
||||||
|
|
||||||
|
@ -221,12 +249,12 @@ public class BaseTestCase {
|
||||||
* If the user specified a different host, things won't work.
|
* If the user specified a different host, things won't work.
|
||||||
*/
|
*/
|
||||||
private static void launchGdbServer() {
|
private static void launchGdbServer() {
|
||||||
if (attrs.get(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_START_MODE)
|
if (launchAttributes.get(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_START_MODE)
|
||||||
.equals(IGDBLaunchConfigurationConstants.DEBUGGER_MODE_REMOTE)) {
|
.equals(IGDBLaunchConfigurationConstants.DEBUGGER_MODE_REMOTE)) {
|
||||||
if (attrs.get(IGDBLaunchConfigurationConstants.ATTR_REMOTE_TCP).equals(Boolean.TRUE)) {
|
if (launchAttributes.get(IGDBLaunchConfigurationConstants.ATTR_REMOTE_TCP).equals(Boolean.TRUE)) {
|
||||||
String server = (String)attrs.get(ATTR_DEBUG_SERVER_NAME);
|
String server = (String)launchAttributes.get(ATTR_DEBUG_SERVER_NAME);
|
||||||
String port = (String)attrs.get(IGDBLaunchConfigurationConstants.ATTR_PORT);
|
String port = (String)launchAttributes.get(IGDBLaunchConfigurationConstants.ATTR_PORT);
|
||||||
String program = (String)attrs.get(ICDTLaunchConfigurationConstants.ATTR_PROGRAM_NAME);
|
String program = (String)launchAttributes.get(ICDTLaunchConfigurationConstants.ATTR_PROGRAM_NAME);
|
||||||
String commandLine = server + " :" + port + " " + program;
|
String commandLine = server + " :" + port + " " + program;
|
||||||
try {
|
try {
|
||||||
System.out.println("Staring gdbserver with command: " + commandLine);
|
System.out.println("Staring gdbserver with command: " + commandLine);
|
||||||
|
|
|
@ -10,11 +10,8 @@
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.cdt.tests.dsf.gdb.tests.tests_6_6;
|
package org.eclipse.cdt.tests.dsf.gdb.tests.tests_6_6;
|
||||||
|
|
||||||
import org.eclipse.cdt.debug.core.ICDTLaunchConfigurationConstants;
|
|
||||||
import org.eclipse.cdt.dsf.gdb.IGDBLaunchConfigurationConstants;
|
|
||||||
import org.eclipse.cdt.dsf.mi.service.command.commands.Suite_Sessionless_Tests;
|
import org.eclipse.cdt.dsf.mi.service.command.commands.Suite_Sessionless_Tests;
|
||||||
import org.eclipse.cdt.tests.dsf.gdb.framework.BaseTestCase;
|
import org.eclipse.cdt.tests.dsf.gdb.framework.BaseRemoteSuite;
|
||||||
import org.junit.BeforeClass;
|
|
||||||
import org.junit.runner.RunWith;
|
import org.junit.runner.RunWith;
|
||||||
import org.junit.runners.Suite;
|
import org.junit.runners.Suite;
|
||||||
|
|
||||||
|
@ -44,10 +41,5 @@ import org.junit.runners.Suite;
|
||||||
/* Add your test class here */
|
/* Add your test class here */
|
||||||
})
|
})
|
||||||
|
|
||||||
public class Suite_Remote_6_6 {
|
public class Suite_Remote_6_6 extends BaseRemoteSuite {
|
||||||
@BeforeClass
|
|
||||||
public static void beforeClassMethod() {
|
|
||||||
BaseTestCase.setLaunchAttribute(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_START_MODE,
|
|
||||||
IGDBLaunchConfigurationConstants.DEBUGGER_MODE_REMOTE);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,11 +10,8 @@
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.cdt.tests.dsf.gdb.tests.tests_6_7;
|
package org.eclipse.cdt.tests.dsf.gdb.tests.tests_6_7;
|
||||||
|
|
||||||
import org.eclipse.cdt.debug.core.ICDTLaunchConfigurationConstants;
|
|
||||||
import org.eclipse.cdt.dsf.gdb.IGDBLaunchConfigurationConstants;
|
|
||||||
import org.eclipse.cdt.dsf.mi.service.command.commands.Suite_Sessionless_Tests;
|
import org.eclipse.cdt.dsf.mi.service.command.commands.Suite_Sessionless_Tests;
|
||||||
import org.eclipse.cdt.tests.dsf.gdb.framework.BaseTestCase;
|
import org.eclipse.cdt.tests.dsf.gdb.framework.BaseRemoteSuite;
|
||||||
import org.junit.BeforeClass;
|
|
||||||
import org.junit.runner.RunWith;
|
import org.junit.runner.RunWith;
|
||||||
import org.junit.runners.Suite;
|
import org.junit.runners.Suite;
|
||||||
|
|
||||||
|
@ -44,10 +41,5 @@ import org.junit.runners.Suite;
|
||||||
/* Add your test class here */
|
/* Add your test class here */
|
||||||
})
|
})
|
||||||
|
|
||||||
public class Suite_Remote_6_7 {
|
public class Suite_Remote_6_7 extends BaseRemoteSuite {
|
||||||
@BeforeClass
|
|
||||||
public static void beforeClassMethod() {
|
|
||||||
BaseTestCase.setLaunchAttribute(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_START_MODE,
|
|
||||||
IGDBLaunchConfigurationConstants.DEBUGGER_MODE_REMOTE);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,11 +10,8 @@
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.cdt.tests.dsf.gdb.tests.tests_6_8;
|
package org.eclipse.cdt.tests.dsf.gdb.tests.tests_6_8;
|
||||||
|
|
||||||
import org.eclipse.cdt.debug.core.ICDTLaunchConfigurationConstants;
|
|
||||||
import org.eclipse.cdt.dsf.gdb.IGDBLaunchConfigurationConstants;
|
|
||||||
import org.eclipse.cdt.dsf.mi.service.command.commands.Suite_Sessionless_Tests;
|
import org.eclipse.cdt.dsf.mi.service.command.commands.Suite_Sessionless_Tests;
|
||||||
import org.eclipse.cdt.tests.dsf.gdb.framework.BaseTestCase;
|
import org.eclipse.cdt.tests.dsf.gdb.framework.BaseRemoteSuite;
|
||||||
import org.junit.BeforeClass;
|
|
||||||
import org.junit.runner.RunWith;
|
import org.junit.runner.RunWith;
|
||||||
import org.junit.runners.Suite;
|
import org.junit.runners.Suite;
|
||||||
|
|
||||||
|
@ -44,10 +41,5 @@ import org.junit.runners.Suite;
|
||||||
/* Add your test class here */
|
/* Add your test class here */
|
||||||
})
|
})
|
||||||
|
|
||||||
public class Suite_Remote_6_8 {
|
public class Suite_Remote_6_8 extends BaseRemoteSuite {
|
||||||
@BeforeClass
|
|
||||||
public static void beforeClassMethod() {
|
|
||||||
BaseTestCase.setLaunchAttribute(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_START_MODE,
|
|
||||||
IGDBLaunchConfigurationConstants.DEBUGGER_MODE_REMOTE);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,11 +10,8 @@
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_0;
|
package org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_0;
|
||||||
|
|
||||||
import org.eclipse.cdt.debug.core.ICDTLaunchConfigurationConstants;
|
|
||||||
import org.eclipse.cdt.dsf.gdb.IGDBLaunchConfigurationConstants;
|
|
||||||
import org.eclipse.cdt.dsf.mi.service.command.commands.Suite_Sessionless_Tests;
|
import org.eclipse.cdt.dsf.mi.service.command.commands.Suite_Sessionless_Tests;
|
||||||
import org.eclipse.cdt.tests.dsf.gdb.framework.BaseTestCase;
|
import org.eclipse.cdt.tests.dsf.gdb.framework.BaseRemoteSuite;
|
||||||
import org.junit.BeforeClass;
|
|
||||||
import org.junit.runner.RunWith;
|
import org.junit.runner.RunWith;
|
||||||
import org.junit.runners.Suite;
|
import org.junit.runners.Suite;
|
||||||
|
|
||||||
|
@ -47,10 +44,5 @@ import org.junit.runners.Suite;
|
||||||
/* Add your test class here */
|
/* Add your test class here */
|
||||||
})
|
})
|
||||||
|
|
||||||
public class Suite_Remote_7_0 {
|
public class Suite_Remote_7_0 extends BaseRemoteSuite {
|
||||||
@BeforeClass
|
|
||||||
public static void beforeClassMethod() {
|
|
||||||
BaseTestCase.setLaunchAttribute(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_START_MODE,
|
|
||||||
IGDBLaunchConfigurationConstants.DEBUGGER_MODE_REMOTE);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,11 +10,8 @@
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_1;
|
package org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_1;
|
||||||
|
|
||||||
import org.eclipse.cdt.debug.core.ICDTLaunchConfigurationConstants;
|
|
||||||
import org.eclipse.cdt.dsf.gdb.IGDBLaunchConfigurationConstants;
|
|
||||||
import org.eclipse.cdt.dsf.mi.service.command.commands.Suite_Sessionless_Tests;
|
import org.eclipse.cdt.dsf.mi.service.command.commands.Suite_Sessionless_Tests;
|
||||||
import org.eclipse.cdt.tests.dsf.gdb.framework.BaseTestCase;
|
import org.eclipse.cdt.tests.dsf.gdb.framework.BaseRemoteSuite;
|
||||||
import org.junit.BeforeClass;
|
|
||||||
import org.junit.runner.RunWith;
|
import org.junit.runner.RunWith;
|
||||||
import org.junit.runners.Suite;
|
import org.junit.runners.Suite;
|
||||||
|
|
||||||
|
@ -47,10 +44,5 @@ import org.junit.runners.Suite;
|
||||||
/* Add your test class here */
|
/* Add your test class here */
|
||||||
})
|
})
|
||||||
|
|
||||||
public class Suite_Remote_7_1 {
|
public class Suite_Remote_7_1 extends BaseRemoteSuite {
|
||||||
@BeforeClass
|
|
||||||
public static void beforeClassMethod() {
|
|
||||||
BaseTestCase.setLaunchAttribute(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_START_MODE,
|
|
||||||
IGDBLaunchConfigurationConstants.DEBUGGER_MODE_REMOTE);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,11 +10,8 @@
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_2;
|
package org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_2;
|
||||||
|
|
||||||
import org.eclipse.cdt.debug.core.ICDTLaunchConfigurationConstants;
|
|
||||||
import org.eclipse.cdt.dsf.gdb.IGDBLaunchConfigurationConstants;
|
|
||||||
import org.eclipse.cdt.dsf.mi.service.command.commands.Suite_Sessionless_Tests;
|
import org.eclipse.cdt.dsf.mi.service.command.commands.Suite_Sessionless_Tests;
|
||||||
import org.eclipse.cdt.tests.dsf.gdb.framework.BaseTestCase;
|
import org.eclipse.cdt.tests.dsf.gdb.framework.BaseRemoteSuite;
|
||||||
import org.junit.BeforeClass;
|
|
||||||
import org.junit.runner.RunWith;
|
import org.junit.runner.RunWith;
|
||||||
import org.junit.runners.Suite;
|
import org.junit.runners.Suite;
|
||||||
|
|
||||||
|
@ -47,10 +44,5 @@ import org.junit.runners.Suite;
|
||||||
/* Add your test class here */
|
/* Add your test class here */
|
||||||
})
|
})
|
||||||
|
|
||||||
public class Suite_Remote_7_2 {
|
public class Suite_Remote_7_2 extends BaseRemoteSuite {
|
||||||
@BeforeClass
|
|
||||||
public static void beforeClassMethod() {
|
|
||||||
BaseTestCase.setLaunchAttribute(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_START_MODE,
|
|
||||||
IGDBLaunchConfigurationConstants.DEBUGGER_MODE_REMOTE);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,11 +10,8 @@
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_3;
|
package org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_3;
|
||||||
|
|
||||||
import org.eclipse.cdt.debug.core.ICDTLaunchConfigurationConstants;
|
|
||||||
import org.eclipse.cdt.dsf.gdb.IGDBLaunchConfigurationConstants;
|
|
||||||
import org.eclipse.cdt.dsf.mi.service.command.commands.Suite_Sessionless_Tests;
|
import org.eclipse.cdt.dsf.mi.service.command.commands.Suite_Sessionless_Tests;
|
||||||
import org.eclipse.cdt.tests.dsf.gdb.framework.BaseTestCase;
|
import org.eclipse.cdt.tests.dsf.gdb.framework.BaseRemoteSuite;
|
||||||
import org.junit.BeforeClass;
|
|
||||||
import org.junit.runner.RunWith;
|
import org.junit.runner.RunWith;
|
||||||
import org.junit.runners.Suite;
|
import org.junit.runners.Suite;
|
||||||
|
|
||||||
|
@ -47,10 +44,5 @@ import org.junit.runners.Suite;
|
||||||
/* Add your test class here */
|
/* Add your test class here */
|
||||||
})
|
})
|
||||||
|
|
||||||
public class Suite_Remote_7_3 {
|
public class Suite_Remote_7_3 extends BaseRemoteSuite {
|
||||||
@BeforeClass
|
|
||||||
public static void beforeClassMethod() {
|
|
||||||
BaseTestCase.setLaunchAttribute(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_START_MODE,
|
|
||||||
IGDBLaunchConfigurationConstants.DEBUGGER_MODE_REMOTE);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue