Skip to main content
summaryrefslogtreecommitdiffstats
blob: 9e5a278a1fe5ec8274a45073dfeef863e33f8875 (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
/*******************************************************************************
 * Copyright (c) 2009, 2010 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.tests.tests_6_7;

import org.eclipse.cdt.dsf.mi.service.command.commands.Suite_Sessionless_Tests;
import org.eclipse.cdt.tests.dsf.gdb.framework.BaseRemoteSuite;
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 6.7
 */

@RunWith(Suite.class)
@Suite.SuiteClasses({
	// We need specific name for the tests of this suite, because of bug https://bugs.eclipse.org/172256
	MIRegistersTest_6_7.class,
	MIRunControlTest_6_7.class,
	MIRunControlTargetAvailableTest_6_7.class,
	MIExpressionsTest_6_7.class,
	MIMemoryTest_6_7.class,
	MIBreakpointsTest_6_7.class,
	MICatchpointsTest_6_7.class,
	MIDisassemblyTest_6_7.class,
	GDBProcessesTest_6_7.class,
	OperationsWhileTargetIsRunningTest_6_7.class,
	CommandTimeoutTest_6_7.class,
	Suite_Sessionless_Tests.class,	
	/* Add your test class here */
})

public class Suite_Remote_6_7 extends BaseRemoteSuite {
}

Back to the top