Skip to main content
summaryrefslogtreecommitdiffstats
blob: 1ae9154c3a2c6b5a088e4afca2742632f52aa2f3 (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
/*******************************************************************************
 * Copyright (c) 2008, 2015 Red Hat Inc..
 * 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:
 *     Red Hat Incorporated - initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.autotools.tests;

import org.eclipse.cdt.autotools.tests.editors.EditorTests;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;

/** On Windows requires either Cygwin or MinGW to be in PATH */
@RunWith(Suite.class)
@Suite.SuiteClasses({
	AutotoolsProjectTest0.class,
	AutotoolsProjectNatureTest.class,
	AutotoolsProjectTest1.class,
	AutotoolsProjectTest2.class,
	AutotoolsVirtualFolderTest.class,
	AutotoolsEnvironmentVarTest.class,
	LibtoolGCCBuildCommandParserTest.class,
	UpdateConfigureTest.class,
	EditorTests.class
})
public class AllAutotoolsTests {
}

Back to the top