Skip to main content
summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorJonah Graham2016-12-14 19:44:08 +0000
committerJonah Graham2016-12-14 19:57:23 +0000
commit0b024e9e3ee177a05696364933d8b64b0b0a0723 (patch)
treeb3491a2dde81fa051cdea5eb08133ad3d8162901 /build
parent7f36a0c128e116678a943472ac8e2d684f04edf8 (diff)
downloadorg.eclipse.cdt-0b024e9e3ee177a05696364933d8b64b0b0a0723.tar.gz
org.eclipse.cdt-0b024e9e3ee177a05696364933d8b64b0b0a0723.tar.xz
org.eclipse.cdt-0b024e9e3ee177a05696364933d8b64b0b0a0723.zip
Bug 509248: Disable unstable/intermittent SWTBot based tests
Diffstat (limited to 'build')
-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