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

Bug 378834: Remote suite was not trigerring remote anymore

Change-Id: I24a4e2c4572b59c90b65370a1f1207502ccafe41
Reviewed-on: https://git.eclipse.org/r/6264
Reviewed-by: Marc Khouzam <marc.khouzam@ericsson.com>
IP-Clean: Marc Khouzam <marc.khouzam@ericsson.com>
Tested-by: Marc Khouzam <marc.khouzam@ericsson.com>
This commit is contained in:
Marc Khouzam 2012-06-05 16:07:52 -04:00
parent 34d5ba7154
commit 4f7a8faf45

View file

@ -21,12 +21,12 @@ import org.junit.BeforeClass;
*/
public class BaseRemoteSuite {
@BeforeClass
public static void beforeClassMethod() {
public static void baseRemoteSuiteBeforeClassMethod() {
BaseTestCase.setGlobalLaunchAttribute(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_START_MODE,
IGDBLaunchConfigurationConstants.DEBUGGER_MODE_REMOTE);
}
@AfterClass
public static void afterClassMethod() {
public static void baseRemoteSuiteAfterClassMethod() {
BaseTestCase.removeGlobalLaunchAttribute(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_START_MODE);
}
}