Skip to main content
summaryrefslogtreecommitdiffstats
blob: b1dd875c211cda9b5dd6824cba61aa7b58ced29b (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
/*******************************************************************************
 * 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
 *******************************************************************************/
package org.eclipse.cdt.tests.dsf.gdb.tests;

import org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_4.Suite_7_4;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;

/**
 * This suite runs all suites that are part of the tests
 * automatically run with each CDT build.
 */

@RunWith(Suite.class)
@Suite.SuiteClasses({
	Suite_7_4.class,
	// Can't run the Remote test just yet because they
	// have the same names on the local tests, which is
	// not handled by JUnit (https://bugs.eclipse.org/172256)
})

public class AutomatedSuite {}

Back to the top