mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +02:00
correct comment and add the UPCParser test suite to the unreliable bucket.
This commit is contained in:
parent
dd605da495
commit
50cbcd2c21
2 changed files with 3 additions and 3 deletions
|
@ -16,6 +16,7 @@ import org.eclipse.cdt.autotools.tests.editors.EditorTests;
|
|||
import junit.framework.Test;
|
||||
import junit.framework.TestSuite;
|
||||
|
||||
/** On Windows requires either Cygwin or MinGW to be in PATH */
|
||||
public class AllAutotoolsTests {
|
||||
|
||||
public static Test suite() {
|
||||
|
|
|
@ -12,15 +12,14 @@ import junit.framework.TestSuite;
|
|||
public class AllTests extends TestSuite {
|
||||
public static Test suite() throws Exception {
|
||||
final AllTests suite = new AllTests();
|
||||
suite.addTest(org.eclipse.cdt.autotools.tests.AllAutotoolsTests.suite()); // Works with MinGW but not Cygwin
|
||||
suite.addTest(org.eclipse.cdt.autotools.tests.AllAutotoolsTests.suite());
|
||||
// // There are intermittent failures in these tests. No pattern to failures. Seems like indexer is interrupted
|
||||
if (System.getProperty("cdt.skip.known.test.failures") == null) { //$NON-NLS-1$
|
||||
suite.addTest(org.eclipse.cdt.codan.core.test.AutomatedIntegrationSuite.suite());
|
||||
suite.addTest(org.eclipse.cdt.core.lrparser.tests.LRParserTestSuite.suite());
|
||||
suite.addTest(org.eclipse.cdt.core.parser.xlc.tests.suite.XlcTestSuite.suite());
|
||||
}
|
||||
|
||||
suite.addTest(org.eclipse.cdt.core.parser.upc.tests.UPCParserTestSuite.suite());
|
||||
}
|
||||
suite.addTest(org.eclipse.cdt.core.suite.AutomatedIntegrationSuite.suite());
|
||||
|
||||
// These tests fail intermittently due to gdb not shutting down and thus
|
||||
|
|
Loading…
Add table
Reference in a new issue