mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Commented out test cases not being maintained by IBM team.
Temporary on sd90 only.
This commit is contained in:
parent
dd567beae7
commit
5c3a375818
3 changed files with 57 additions and 57 deletions
|
@ -4,7 +4,7 @@
|
|||
* are made available under the terms of the Eclipse Public License v1.0
|
||||
* which accompanies this distribution, and is available at
|
||||
* http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
*
|
||||
* Contributors:
|
||||
* IBM Corporation - initial API and implementation
|
||||
*******************************************************************************/
|
||||
|
@ -16,7 +16,7 @@ import junit.framework.Test;
|
|||
import junit.framework.TestSuite;
|
||||
|
||||
public class LRParserTestSuite extends TestSuite {
|
||||
|
||||
|
||||
// TODO: the following test are not being reused
|
||||
//
|
||||
// DOMGCCSelectionParseExtensionsTest
|
||||
|
@ -25,40 +25,41 @@ public class LRParserTestSuite extends TestSuite {
|
|||
// QuickParser2Tests
|
||||
//
|
||||
// and perhaps others
|
||||
|
||||
|
||||
public static Test suite() {
|
||||
return new TestSuite() {{
|
||||
|
||||
addTest(LRCommentTests.suite());
|
||||
addTest(LRCompleteParser2Tests.suite());
|
||||
addTest(LRCompletionBasicTest.suite());
|
||||
addTest(LRCompletionParseTest.suite());
|
||||
addTest(LRCPPSpecTest.suite());
|
||||
addTest(LRCPPTests.suite());
|
||||
addTest(LRCSpecTests.suite()); // a couple of failures
|
||||
addTest(LRDigraphTrigraphTests.suite());
|
||||
addTest(LRDOMLocationInclusionTests.suite());
|
||||
addTest(LRDOMLocationMacroTests.suite());
|
||||
addTest(LRDOMLocationTests.suite());
|
||||
addTest(LRDOMPreprocessorInformationTest.suite());
|
||||
addTest(LRGCCTests.suite());
|
||||
addTest(LRGCCCompleteParseExtensionsTest.suite());
|
||||
addTest(LRImageLocationTests.suite());
|
||||
addTest(LRKnRTests.suite()); // mostly fail due to ambiguities
|
||||
addTest(LRNodeSelectorTest.suite());
|
||||
addTestSuite(LRQuickParser2Tests.class);
|
||||
addTest(LRSelectionParseTest.suite()); // this one still has a lot of failing tests though
|
||||
addTest(LRSemanticsTests.suite());
|
||||
addTest(LRTaskParserTest.suite());
|
||||
addTest(LRTemplateTests.suite());
|
||||
addTest(LRTests.suite()); // has some tests that do fail
|
||||
addTest(LRUtilOldTests.suite());
|
||||
addTest(LRUtilTests.suite());
|
||||
addTest(LRCompletionHangingTest.suite());
|
||||
addTest(LRCPPImplicitNameTests.suite());
|
||||
//addTest(LRInactiveCodeTests.suite());
|
||||
|
||||
// AG FIXME - temporarily commented out on sd90 branch
|
||||
// addTest(LRCommentTests.suite());
|
||||
// addTest(LRCompleteParser2Tests.suite());
|
||||
// addTest(LRCompletionBasicTest.suite());
|
||||
// addTest(LRCompletionParseTest.suite());
|
||||
// addTest(LRCPPSpecTest.suite());
|
||||
// addTest(LRCPPTests.suite());
|
||||
// addTest(LRCSpecTests.suite()); // a couple of failures
|
||||
// addTest(LRDigraphTrigraphTests.suite());
|
||||
// addTest(LRDOMLocationInclusionTests.suite());
|
||||
// addTest(LRDOMLocationMacroTests.suite());
|
||||
// addTest(LRDOMLocationTests.suite());
|
||||
// addTest(LRDOMPreprocessorInformationTest.suite());
|
||||
// addTest(LRGCCTests.suite());
|
||||
// addTest(LRGCCCompleteParseExtensionsTest.suite());
|
||||
// addTest(LRImageLocationTests.suite());
|
||||
// addTest(LRKnRTests.suite()); // mostly fail due to ambiguities
|
||||
// addTest(LRNodeSelectorTest.suite());
|
||||
// addTestSuite(LRQuickParser2Tests.class);
|
||||
// addTest(LRSelectionParseTest.suite()); // this one still has a lot of failing tests though
|
||||
// addTest(LRSemanticsTests.suite());
|
||||
// addTest(LRTaskParserTest.suite());
|
||||
// addTest(LRTemplateTests.suite());
|
||||
// addTest(LRTests.suite()); // has some tests that do fail
|
||||
// addTest(LRUtilOldTests.suite());
|
||||
// addTest(LRUtilTests.suite());
|
||||
// addTest(LRCompletionHangingTest.suite());
|
||||
// addTest(LRCPPImplicitNameTests.suite());
|
||||
// //addTest(LRInactiveCodeTests.suite());
|
||||
|
||||
}};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -14,27 +14,28 @@ import junit.framework.Test;
|
|||
import junit.framework.TestSuite;
|
||||
|
||||
public class UPCParserTestSuite extends TestSuite {
|
||||
|
||||
|
||||
public static Test suite() {
|
||||
return new TestSuite() {{
|
||||
addTestSuite(UPCCommentTests.class);
|
||||
addTestSuite(UPCCompletionBasicTest.class);
|
||||
addTestSuite(UPCCompletionParseTest.class);
|
||||
addTestSuite(UPCDOMLocationInclusionTests.class);
|
||||
addTestSuite(UPCDOMLocationMacroTests.class);
|
||||
addTestSuite(UPCDOMLocationTests.class);
|
||||
addTestSuite(UPCDOMPreprocessorInformationTest.class);
|
||||
addTestSuite(UPCKnRTests.class);
|
||||
addTestSuite(UPCSelectionParseTest.class);
|
||||
addTestSuite(UPCCSpecTests.class);
|
||||
addTestSuite(UPCTests.class);
|
||||
addTestSuite(UPCLanguageExtensionTests.class);
|
||||
addTestSuite(UPCDigraphTrigraphTests.class);
|
||||
addTestSuite(UPCGCCTests.class);
|
||||
addTestSuite(UPCUtilOldTests.class);
|
||||
addTestSuite(UPCUtilTests.class);
|
||||
addTestSuite(UPCCompleteParser2Tests.class);
|
||||
addTestSuite(UPCTaskParserTest.class);
|
||||
// AG FIXME - temporarily commented out on sd90 branch
|
||||
// addTestSuite(UPCCommentTests.class);
|
||||
// addTestSuite(UPCCompletionBasicTest.class);
|
||||
// addTestSuite(UPCCompletionParseTest.class);
|
||||
// addTestSuite(UPCDOMLocationInclusionTests.class);
|
||||
// addTestSuite(UPCDOMLocationMacroTests.class);
|
||||
// addTestSuite(UPCDOMLocationTests.class);
|
||||
// addTestSuite(UPCDOMPreprocessorInformationTest.class);
|
||||
// addTestSuite(UPCKnRTests.class);
|
||||
// addTestSuite(UPCSelectionParseTest.class);
|
||||
// addTestSuite(UPCCSpecTests.class);
|
||||
// addTestSuite(UPCTests.class);
|
||||
// addTestSuite(UPCLanguageExtensionTests.class);
|
||||
// addTestSuite(UPCDigraphTrigraphTests.class);
|
||||
// addTestSuite(UPCGCCTests.class);
|
||||
// addTestSuite(UPCUtilOldTests.class);
|
||||
// addTestSuite(UPCUtilTests.class);
|
||||
// addTestSuite(UPCCompleteParser2Tests.class);
|
||||
// addTestSuite(UPCTaskParserTest.class);
|
||||
}};
|
||||
}
|
||||
}
|
||||
|
|
|
@ -14,15 +14,13 @@ package org.eclipse.cdt.core.parser.xlc.tests.suite;
|
|||
import junit.framework.Test;
|
||||
import junit.framework.TestSuite;
|
||||
|
||||
import org.eclipse.cdt.core.parser.xlc.tests.XlcExtensionsTestSuite;
|
||||
import org.eclipse.cdt.core.parser.xlc.tests.base.XlcLRParserTestSuite;
|
||||
|
||||
public class XlcTestSuite extends TestSuite {
|
||||
|
||||
public static Test suite() {
|
||||
return new TestSuite() {{
|
||||
addTest(XlcExtensionsTestSuite.suite());
|
||||
addTest(XlcLRParserTestSuite.suite());
|
||||
// AG FIXME - temporarily commented out on sd90 branch
|
||||
// addTest(XlcExtensionsTestSuite.suite());
|
||||
// addTest(XlcLRParserTestSuite.suite());
|
||||
}};
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue