Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 337893 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_0/MIRunControlNonStopTargetAvailableTest_7_0.java (+27 lines)
Added Link Here
1
/*******************************************************************************
2
 * Copyright (c) 2011 Ericsson and others.
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
6
 * http://www.eclipse.org/legal/epl-v10.html
7
 * 
8
 * Contributors:
9
 *     Ericsson	AB		  - Initial implementation of Test cases
10
 *******************************************************************************/
11
package org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_0;
12
13
14
import org.eclipse.cdt.dsf.gdb.IGDBLaunchConfigurationConstants;
15
import org.eclipse.cdt.tests.dsf.gdb.framework.BackgroundRunner;
16
import org.eclipse.cdt.tests.dsf.gdb.tests.ITestConstants;
17
import org.junit.BeforeClass;
18
import org.junit.runner.RunWith;
19
20
@RunWith(BackgroundRunner.class)
21
public class MIRunControlNonStopTargetAvailableTest_7_0 extends MIRunControlTargetAvailableTest_7_0 {
22
	@BeforeClass
23
    public static void beforeClassMethod_7_0() {
24
		setGdbProgramNamesLaunchAttributes(ITestConstants.SUFFIX_GDB_7_0);
25
    	setLaunchAttribute(IGDBLaunchConfigurationConstants.ATTR_DEBUGGER_NON_STOP, true);
26
	}
27
}
(-)src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_0/Suite_7_0.java (+1 lines)
Lines 29-34 Link Here
29
	MIRegistersTest_7_0.class,
29
	MIRegistersTest_7_0.class,
30
	MIRunControlTest_7_0.class,
30
	MIRunControlTest_7_0.class,
31
	MIRunControlTargetAvailableTest_7_0.class,
31
	MIRunControlTargetAvailableTest_7_0.class,
32
	MIRunControlNonStopTargetAvailableTest_7_0.class,
32
	MIExpressionsTest_7_0.class,
33
	MIExpressionsTest_7_0.class,
33
	MIMemoryTest_7_0.class,
34
	MIMemoryTest_7_0.class,
34
	MIBreakpointsTest_7_0.class,
35
	MIBreakpointsTest_7_0.class,
(-)src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_0/Suite_Remote_7_0.java (+1 lines)
Lines 33-38 Link Here
33
	GDBRemoteTracepointsTest_7_0.class,
33
	GDBRemoteTracepointsTest_7_0.class,
34
	MIRegistersTest_7_0.class,
34
	MIRegistersTest_7_0.class,
35
	MIRunControlTargetAvailableTest_7_0.class,
35
	MIRunControlTargetAvailableTest_7_0.class,
36
	MIRunControlNonStopTargetAvailableTest_7_0.class,
36
	MIRunControlTest_7_0.class,
37
	MIRunControlTest_7_0.class,
37
	MIExpressionsTest_7_0.class,
38
	MIExpressionsTest_7_0.class,
38
	MIMemoryTest_7_0.class,
39
	MIMemoryTest_7_0.class,
(-)src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_1/MIRunControlNonStopTargetAvailableTest_7_1.java (+27 lines)
Added Link Here
1
/*******************************************************************************
2
 * Copyright (c) 2011 Ericsson and others.
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
6
 * http://www.eclipse.org/legal/epl-v10.html
7
 * 
8
 * Contributors:
9
 *     Ericsson	AB		  - Initial implementation of Test cases
10
 *******************************************************************************/
11
package org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_1;
12
13
14
import org.eclipse.cdt.dsf.gdb.IGDBLaunchConfigurationConstants;
15
import org.eclipse.cdt.tests.dsf.gdb.framework.BackgroundRunner;
16
import org.eclipse.cdt.tests.dsf.gdb.tests.ITestConstants;
17
import org.junit.BeforeClass;
18
import org.junit.runner.RunWith;
19
20
@RunWith(BackgroundRunner.class)
21
public class MIRunControlNonStopTargetAvailableTest_7_1 extends MIRunControlTargetAvailableTest_7_1 {
22
	@BeforeClass
23
    public static void beforeClassMethod_7_1() {
24
		setGdbProgramNamesLaunchAttributes(ITestConstants.SUFFIX_GDB_7_1);
25
    	setLaunchAttribute(IGDBLaunchConfigurationConstants.ATTR_DEBUGGER_NON_STOP, true);
26
	}
27
}
(-)src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_1/Suite_7_1.java (+1 lines)
Lines 29-34 Link Here
29
	MIRegistersTest_7_1.class,
29
	MIRegistersTest_7_1.class,
30
	MIRunControlTest_7_1.class,
30
	MIRunControlTest_7_1.class,
31
	MIRunControlTargetAvailableTest_7_1.class,
31
	MIRunControlTargetAvailableTest_7_1.class,
32
	MIRunControlNonStopTargetAvailableTest_7_1.class,
32
	MIExpressionsTest_7_1.class,
33
	MIExpressionsTest_7_1.class,
33
	MIMemoryTest_7_1.class,
34
	MIMemoryTest_7_1.class,
34
	MIBreakpointsTest_7_1.class,
35
	MIBreakpointsTest_7_1.class,
(-)src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_1/Suite_Remote_7_1.java (+1 lines)
Lines 33-38 Link Here
33
	GDBRemoteTracepointsTest_7_1.class,
33
	GDBRemoteTracepointsTest_7_1.class,
34
	MIRegistersTest_7_1.class,
34
	MIRegistersTest_7_1.class,
35
	MIRunControlTargetAvailableTest_7_1.class,
35
	MIRunControlTargetAvailableTest_7_1.class,
36
	MIRunControlNonStopTargetAvailableTest_7_1.class,
36
	MIRunControlTest_7_1.class,
37
	MIRunControlTest_7_1.class,
37
	MIExpressionsTest_7_1.class,
38
	MIExpressionsTest_7_1.class,
38
	MIMemoryTest_7_1.class,
39
	MIMemoryTest_7_1.class,
(-)src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_2/MIRunControlNonStopTargetAvailableTest_7_2.java (+27 lines)
Added Link Here
1
/*******************************************************************************
2
 * Copyright (c) 2011 Ericsson and others.
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
6
 * http://www.eclipse.org/legal/epl-v10.html
7
 * 
8
 * Contributors:
9
 *     Ericsson	AB		  - Initial implementation of Test cases
10
 *******************************************************************************/
11
package org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_2;
12
13
14
import org.eclipse.cdt.dsf.gdb.IGDBLaunchConfigurationConstants;
15
import org.eclipse.cdt.tests.dsf.gdb.framework.BackgroundRunner;
16
import org.eclipse.cdt.tests.dsf.gdb.tests.ITestConstants;
17
import org.junit.BeforeClass;
18
import org.junit.runner.RunWith;
19
20
@RunWith(BackgroundRunner.class)
21
public class MIRunControlNonStopTargetAvailableTest_7_2 extends MIRunControlTargetAvailableTest_7_2 {
22
	@BeforeClass
23
    public static void beforeClassMethod_7_2() {
24
		setGdbProgramNamesLaunchAttributes(ITestConstants.SUFFIX_GDB_7_2);
25
    	setLaunchAttribute(IGDBLaunchConfigurationConstants.ATTR_DEBUGGER_NON_STOP, true);
26
	}
27
}
(-)src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_2/Suite_7_2.java (+1 lines)
Lines 29-34 Link Here
29
	MIRegistersTest_7_2.class,
29
	MIRegistersTest_7_2.class,
30
	MIRunControlTest_7_2.class,
30
	MIRunControlTest_7_2.class,
31
	MIRunControlTargetAvailableTest_7_2.class,
31
	MIRunControlTargetAvailableTest_7_2.class,
32
	MIRunControlNonStopTargetAvailableTest_7_2.class,
32
	MIExpressionsTest_7_2.class,
33
	MIExpressionsTest_7_2.class,
33
	MIMemoryTest_7_2.class,
34
	MIMemoryTest_7_2.class,
34
	MIBreakpointsTest_7_2.class,
35
	MIBreakpointsTest_7_2.class,
(-)src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_2/Suite_Remote_7_2.java (+1 lines)
Lines 34-39 Link Here
34
	MIRegistersTest_7_2.class,
34
	MIRegistersTest_7_2.class,
35
	MIRunControlTest_7_2.class,
35
	MIRunControlTest_7_2.class,
36
	MIRunControlTargetAvailableTest_7_2.class,
36
	MIRunControlTargetAvailableTest_7_2.class,
37
	MIRunControlNonStopTargetAvailableTest_7_2.class,
37
	MIExpressionsTest_7_2.class,
38
	MIExpressionsTest_7_2.class,
38
	MIMemoryTest_7_2.class,
39
	MIMemoryTest_7_2.class,
39
	MIBreakpointsTest_7_2.class,
40
	MIBreakpointsTest_7_2.class,

Return to bug 337893