1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 00:45:28 +02:00

Fix org.eclipse.cdt.alltests.AllTests compilation

Change-Id: Ie07ba0e7411e5d165fc11f4e7616edc793611a77
Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
This commit is contained in:
Marc-Andre Laperle 2015-10-09 17:42:59 -04:00
parent 41d04dd376
commit 10ae5c9dea

View file

@ -10,6 +10,7 @@
*******************************************************************************/
package org.eclipse.cdt.alltests;
import junit.framework.JUnit4TestAdapter;
import junit.framework.Test;
import junit.framework.TestSuite;
@ -22,7 +23,7 @@ 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());
suite.addTest(new JUnit4TestAdapter(org.eclipse.cdt.autotools.tests.AllAutotoolsTests.class));
// // 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());