1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 09:25:31 +02:00

Bug 324339 - Two recent UPC parser test failures in the cdt build are not applicable to UPC language.

This commit is contained in:
Chris Recoskie 2010-09-02 18:54:57 +00:00
parent 3712f8e971
commit 9e628bc9e3

View file

@ -30,6 +30,8 @@ public class UPCTests extends LRTests {
}
//TODO ??? overwrite some failed test cases
//some test cases which are not applicable to UPC are bypassed here.
//UPC extends from C99, which doesn't include some GNU extending features such as "typeof".
@Override
public void testCompositeTypes() throws Exception {}
@Override
@ -64,6 +66,10 @@ public class UPCTests extends LRTests {
public void testThreadLocalVariables_Bug260387() throws Exception {}
@Override
public void testVaArgWithFunctionPtr_311030() throws Exception {}
@Override
public void testRecursiveFunctionType_321856() throws Exception {}
@Override
public void testPtrDiffRecursion_317004() throws Exception {}
@Override