From 0b024e9e3ee177a05696364933d8b64b0b0a0723 Mon Sep 17 00:00:00 2001 From: Jonah Graham Date: Wed, 14 Dec 2016 19:44:08 +0000 Subject: [PATCH] Bug 509248: Disable unstable/intermittent SWTBot based tests Change-Id: I97b764c2aa695fed32a9c39232ba53522383deca --- .../cdt/autotools/ui/tests/AllTests.java | 17 ++++++++++------- 1 file 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) {