Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Blackburn2011-01-26 18:55:36 +0000
committerJames Blackburn2011-01-26 18:55:36 +0000
commit4170bd69ab2715d7bad70109acb0f044d38603ce (patch)
tree812a721d8c52769b2ea902ba720f688fccdfc6c4
parent9605b020cebdd266b409523aae59950a3349c78e (diff)
downloadorg.eclipse.cdt-4170bd69ab2715d7bad70109acb0f044d38603ce.tar.gz
org.eclipse.cdt-4170bd69ab2715d7bad70109acb0f044d38603ce.tar.xz
org.eclipse.cdt-4170bd69ab2715d7bad70109acb0f044d38603ce.zip
Bug 328867 - Override some C++ 0x test cases in LR parser test suite in 70x stream (patch 1)
-rw-r--r--lrparser/org.eclipse.cdt.core.lrparser.tests/src/org/eclipse/cdt/core/lrparser/tests/LRCPPTests.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/lrparser/org.eclipse.cdt.core.lrparser.tests/src/org/eclipse/cdt/core/lrparser/tests/LRCPPTests.java b/lrparser/org.eclipse.cdt.core.lrparser.tests/src/org/eclipse/cdt/core/lrparser/tests/LRCPPTests.java
index c5bc23c59c6..b3cd0192119 100644
--- a/lrparser/org.eclipse.cdt.core.lrparser.tests/src/org/eclipse/cdt/core/lrparser/tests/LRCPPTests.java
+++ b/lrparser/org.eclipse.cdt.core.lrparser.tests/src/org/eclipse/cdt/core/lrparser/tests/LRCPPTests.java
@@ -70,6 +70,9 @@ public class LRCPPTests extends AST2CPPTests {
@Override
public void testScopedEnums_305975g() throws Exception {}
+ @Override
+ public void testBug332114a() throws Exception {}
+
//unicode character type
@Override
public void testNewCharacterTypes_305976() throws Exception {}
@@ -84,6 +87,9 @@ public class LRCPPTests extends AST2CPPTests {
@Override
public void testNewFunctionDeclaratorSyntax_305972() throws Exception {}
+ @Override
+ public void testBug332114b() throws Exception {}
+
//DeclType
@Override
public void testDeclType_294730() throws Exception {}

Back to the top