1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 01:36:01 +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)
@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) {