Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2497c8243a85a219908536d83c9fa3c79964e6df (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) 2009, 2013 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;

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 suites we
 * want to run.  When creating a new suite class, it should be
 * added to the list below.
 * 
 * This suite runs the tests with the current version of GDB that is on the PATH
 */

@RunWith(Suite.class)
@Suite.SuiteClasses({
	LaunchUtilsTest.class,
	MIRegistersTest.class,
	MIRunControlTest.class,
	MIRunControlTargetAvailableTest.class,
	MIExpressionsTest.class,
	MIMemoryTest.class,
	MIBreakpointsTest.class,
	MICatchpointsTest.class,
	MIDisassemblyTest.class,
	GDBProcessesTest.class,
	LaunchConfigurationAndRestartTest.class,
	OperationsWhileTargetIsRunningTest.class,
	PostMortemCoreTest.class,
	CommandTimeoutTest.class,
	Suite_Sessionless_Tests.class,
	StepIntoSelectionTest.class,
	/* Add your suite class here */
})

public class AllTests {}

Back to the top