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

fix for XLC parser test suite

This commit is contained in:
Mike Kucera 2009-04-30 19:14:08 +00:00
parent b08713702c
commit 9605de728a
2 changed files with 0 additions and 33 deletions

View file

@ -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();
}
}

View file

@ -33,7 +33,6 @@ public class XlcLRParserTestSuite extends TestSuite {
addTest(XlcLRCompleteParser2Tests.suite());
addTest(XlcLRCompletionBasicTest.suite());
addTest(XlcLRCompletionParseTest.suite());
addTest(XlcLRCPPSpecFailingTest.suite());
addTest(XlcLRCPPSpecTest.suite());
addTest(XlcLRCPPTests.suite());
addTest(XlcLRCSpecTests.suite()); // a couple of failures