Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7f84cf16bb1a8e1116c8aa547439a45b377e6f4b (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
/*******************************************************************************
 * 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_4;

import org.eclipse.cdt.dsf.mi.service.command.commands.Suite_Sessionless_Tests;
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.4.
 */

@RunWith(Suite.class)
@Suite.SuiteClasses({
	// We need specific name for the tests of this suite, because of bug https://bugs.eclipse.org/172256
	MIRegistersTest_7_4.class,
	MIRunControlTest_7_4.class,
	MIRunControlTargetAvailableTest_7_4.class,
	MIRunControlNonStopTargetAvailableTest_7_4.class,
	MIExpressionsTest_7_4.class,
	MIMemoryTest_7_4.class,
	MIBreakpointsTest_7_4.class,
	MICatchpointsTest_7_4.class,
	MIDisassemblyTest_7_4.class,
	GDBProcessesTest_7_4.class,
	LaunchConfigurationAndRestartTest_7_4.class,
	OperationsWhileTargetIsRunningTest_7_4.class,
	OperationsWhileTargetIsRunningNonStopTest_7_4.class,
	PostMortemCoreTest_7_4.class,
	Suite_Sessionless_Tests.class	
	/* Add your test class here */
})

public class Suite_7_4 {}

Back to the top