Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--build/org.eclipse.cdt.autotools.ui.tests/src/org/eclipse/cdt/autotools/ui/tests/AllTests.java17
1 files changed, 10 insertions, 7 deletions
diff --git a/build/org.eclipse.cdt.autotools.ui.tests/src/org/eclipse/cdt/autotools/ui/tests/AllTests.java b/build/org.eclipse.cdt.autotools.ui.tests/src/org/eclipse/cdt/autotools/ui/tests/AllTests.java
index b9fa4e2a87f..909994aa240 100644
--- a/build/org.eclipse.cdt.autotools.ui.tests/src/org/eclipse/cdt/autotools/ui/tests/AllTests.java
+++ b/build/org.eclipse.cdt.autotools.ui.tests/src/org/eclipse/cdt/autotools/ui/tests/AllTests.java
@@ -22,10 +22,13 @@ import org.junit.runners.Suite;
@RunWith(Suite.class)
@Suite.SuiteClasses({
- TestToolActions.class,
- TestEnvironmentVars.class,
- TestMakeTargets.class,
- SetConfigurationParameter.class,
+/*
+ *
+ * TestToolActions.class,
+ * TestEnvironmentVars.class,
+ * TestMakeTargets.class,
+ * SetConfigurationParameter.class,
+ */
AutoconfTests.class
})
@@ -33,10 +36,10 @@ public class AllTests {
// needed for this class to compile
@BeforeClass
public static void beforeClassMethod() {
- // Verify that the necessary binaries are available, and if they are not,
+ // Verify that the necessary binaries are available, and if they are not,
// the tests will be ignored.
- String[] testBinaryCommands = { "libtool --version",
- "autoconf --version",
+ String[] testBinaryCommands = { "libtool --version",
+ "autoconf --version",
"automake --version" };
try {
for (String cmd : testBinaryCommands) {

Back to the top