1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 22:22:11 +02:00

added AST2UtilOldTests to C99 parser test suite

This commit is contained in:
Mike Kucera 2007-06-13 03:59:55 +00:00
parent 41cb2b5bab
commit e39c7acf19
2 changed files with 24 additions and 0 deletions

View file

@ -32,6 +32,7 @@ public class AutomatedIntegrationSuite extends TestSuite {
suite.addTestSuite(UPCLanguageExtensionTests.class);
suite.addTestSuite(UPCC99DigraphTrigraphTests.class);
suite.addTestSuite(UPCC99GCCTests.class);
suite.addTestSuite(UPCC99UtilOldTests.class);
return suite;
}

View file

@ -0,0 +1,23 @@
/*******************************************************************************
* Copyright (c) 2006, 2007 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.upc.tests;
import org.eclipse.cdt.core.dom.c99.BaseExtensibleLanguage;
import org.eclipse.cdt.core.dom.upc.UPCLanguage;
import org.eclipse.cdt.core.parser.c99.tests.C99UtilOldTests;
public class UPCC99UtilOldTests extends C99UtilOldTests {
protected BaseExtensibleLanguage getLanguage() {
return UPCLanguage.getDefault();
}
}