1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 09:46:02 +02:00

Bug 509248: Disable unstable/intermittent SWTBot based tests

Change-Id: I97b764c2aa695fed32a9c39232ba53522383deca
This commit is contained in:
Jonah Graham 2016-12-14 19:44:08 +00:00
parent 7f36a0c128
commit 0b024e9e3e

View file

@ -22,10 +22,13 @@ import org.junit.runners.Suite;
@RunWith(Suite.class) @RunWith(Suite.class)
@Suite.SuiteClasses({ @Suite.SuiteClasses({
TestToolActions.class, /*
TestEnvironmentVars.class, *
TestMakeTargets.class, * TestToolActions.class,
SetConfigurationParameter.class, * TestEnvironmentVars.class,
* TestMakeTargets.class,
* SetConfigurationParameter.class,
*/
AutoconfTests.class AutoconfTests.class
}) })
@ -33,10 +36,10 @@ public class AllTests {
// needed for this class to compile // needed for this class to compile
@BeforeClass @BeforeClass
public static void beforeClassMethod() { 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. // the tests will be ignored.
String[] testBinaryCommands = { "libtool --version", String[] testBinaryCommands = { "libtool --version",
"autoconf --version", "autoconf --version",
"automake --version" }; "automake --version" };
try { try {
for (String cmd : testBinaryCommands) { for (String cmd : testBinaryCommands) {