Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 29d3a85b6609b50b75c0e7844d09691bda232fbe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*******************************************************************************
 * Copyright (c) 2012 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:
 *     Marc Khouzam (Ericsson) - Initial implementation of Test cases
 *******************************************************************************/
package org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_5;

import org.eclipse.cdt.dsf.mi.service.command.commands.Suite_Sessionless_Tests;
import org.eclipse.cdt.tests.dsf.gdb.framework.BaseRemoteSuite;
import org.eclipse.cdt.tests.dsf.gdb.framework.BaseTestCase;
import org.eclipse.cdt.tests.dsf.gdb.tests.ITestConstants;
import org.junit.BeforeClass;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;

/**
 * This class is meant to be empty.  It enables us to define
 * the annotations which list all the different JUnit class we
 * want to run.  When creating a new test class, it should be
 * added to the list below.
 * 
 *  This suite is for tests to be run with GDB 7.5
 */

@RunWith(Suite.class)
@Suite.SuiteClasses({
	// We need specific name for the tests of this suite, because of bug https://bugs.eclipse.org/172256
	GDBRemoteTracepointsTest_7_5.class,
	MIRegistersTest_7_5.class,
	MIRunControlTest_7_5.class,
	MIRunControlTargetAvailableTest_7_5.class,
	MIRunControlNonStopTargetAvailableTest_7_5.class,
	MIExpressionsTest_7_5.class,
	MIMemoryTest_7_5.class,
	MIBreakpointsTest_7_5.class,
	MICatchpointsTest_7_5.class,
	MIDisassemblyTest_7_5.class,
	GDBProcessesTest_7_5.class,
	OperationsWhileTargetIsRunningTest_7_5.class,
	OperationsWhileTargetIsRunningNonStopTest_7_5.class,
	CommandTimeoutTest_7_5.class,
	GDBMultiNonStopRunControlTest_7_5.class,
	Suite_Sessionless_Tests.class	
	/* Add your test class here */
})

public class Suite_Remote_7_5 extends BaseRemoteSuite {
	@BeforeClass
	public static void beforeClassMethod() {
		BaseTestCase.setGdbProgramNamesLaunchAttributes(ITestConstants.SUFFIX_GDB_7_5);
		BaseTestCase.ignoreIfGDBMissing();
	}
}

Back to the top