mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-02 13:55:39 +02:00
fix for XLC parser test suite
This commit is contained in:
parent
b08713702c
commit
9605de728a
2 changed files with 0 additions and 33 deletions
|
@ -1,32 +0,0 @@
|
||||||
/*******************************************************************************
|
|
||||||
* Copyright (c) 2009 IBM Corporation and others.
|
|
||||||
* All rights reserved. This program and the accompanying materials
|
|
||||||
* 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
|
|
||||||
*******************************************************************************/
|
|
||||||
package org.eclipse.cdt.core.parser.xlc.tests.base;
|
|
||||||
|
|
||||||
import junit.framework.TestSuite;
|
|
||||||
|
|
||||||
import org.eclipse.cdt.core.lrparser.tests.LRCPPSpecFailingTest;
|
|
||||||
import org.eclipse.cdt.core.lrparser.xlc.XlcCLanguage;
|
|
||||||
import org.eclipse.cdt.core.lrparser.xlc.XlcCPPLanguage;
|
|
||||||
import org.eclipse.cdt.core.model.ILanguage;
|
|
||||||
|
|
||||||
public class XlcLRCPPSpecFailingTest extends LRCPPSpecFailingTest {
|
|
||||||
public static TestSuite suite() {
|
|
||||||
return suite(XlcLRCPPSpecFailingTest.class);
|
|
||||||
}
|
|
||||||
|
|
||||||
protected ILanguage getCLanguage() {
|
|
||||||
return XlcCLanguage.getDefault();
|
|
||||||
}
|
|
||||||
|
|
||||||
protected ILanguage getCPPLanguage() {
|
|
||||||
return XlcCPPLanguage.getDefault();
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -33,7 +33,6 @@ public class XlcLRParserTestSuite extends TestSuite {
|
||||||
addTest(XlcLRCompleteParser2Tests.suite());
|
addTest(XlcLRCompleteParser2Tests.suite());
|
||||||
addTest(XlcLRCompletionBasicTest.suite());
|
addTest(XlcLRCompletionBasicTest.suite());
|
||||||
addTest(XlcLRCompletionParseTest.suite());
|
addTest(XlcLRCompletionParseTest.suite());
|
||||||
addTest(XlcLRCPPSpecFailingTest.suite());
|
|
||||||
addTest(XlcLRCPPSpecTest.suite());
|
addTest(XlcLRCPPSpecTest.suite());
|
||||||
addTest(XlcLRCPPTests.suite());
|
addTest(XlcLRCPPTests.suite());
|
||||||
addTest(XlcLRCSpecTests.suite()); // a couple of failures
|
addTest(XlcLRCSpecTests.suite()); // a couple of failures
|
||||||
|
|
Loading…
Add table
Reference in a new issue