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:
parent
7f36a0c128
commit
0b024e9e3e
1 changed files with 10 additions and 7 deletions
|
@ -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) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue