Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Blackburn2011-01-26 18:53:12 +0000
committerJames Blackburn2011-01-26 18:53:12 +0000
commit7759bde483a3cc2e16c34c94a6a83ec7145f7027 (patch)
tree1502f99ddec8da85a63072f41681baf3a35fed23 /lrparser/org.eclipse.cdt.core.lrparser.tests/src/org/eclipse/cdt/core/lrparser/tests/LRCPPTests.java
parent1821d8be1be9a90ce4d00bd44435107d944b1066 (diff)
downloadorg.eclipse.cdt-7759bde483a3cc2e16c34c94a6a83ec7145f7027.tar.gz
org.eclipse.cdt-7759bde483a3cc2e16c34c94a6a83ec7145f7027.tar.xz
org.eclipse.cdt-7759bde483a3cc2e16c34c94a6a83ec7145f7027.zip
Bug 328867 - Override some C++ 0x test cases in LR parser test suite in head stream
Diffstat (limited to 'lrparser/org.eclipse.cdt.core.lrparser.tests/src/org/eclipse/cdt/core/lrparser/tests/LRCPPTests.java')
-rw-r--r--lrparser/org.eclipse.cdt.core.lrparser.tests/src/org/eclipse/cdt/core/lrparser/tests/LRCPPTests.java39
1 files changed, 39 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..f464ff278c0 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
@@ -69,6 +69,9 @@ public class LRCPPTests extends AST2CPPTests {
public void testScopedEnums_305975e() throws Exception {}
@Override
public void testScopedEnums_305975g() throws Exception {}
+ @Override
+ public void testBug332114b() throws Exception {}
+
//unicode character type
@Override
@@ -83,12 +86,48 @@ public class LRCPPTests extends AST2CPPTests {
public void testAutoType_305987() throws Exception {}
@Override
public void testNewFunctionDeclaratorSyntax_305972() throws Exception {}
+ @Override
+ public void testBug332114a() throws Exception {}
+ @Override
+ public void testAutoTypeInRangeBasedFor_332883() throws Exception {}
+ @Override
+ public void testResolutionInTrailingReturnType_333256() throws Exception {}
//DeclType
@Override
public void testDeclType_294730() throws Exception {}
+ //Defaulted and deleted functions
+ public void testDefaultedAndDeletedFunctions_305978() throws Exception {}
+ public void testDefaultedAndDeletedFunctions_305978b() throws Exception {}
+
+ //Inline namespaces
+ @Override
+ public void testInlineNamespace_305980a() throws Exception {}
+ @Override
+ public void testInlineNamespace_305980b() throws Exception {}
+ @Override
+ public void testInlineNamespace_305980c() throws Exception {}
+ @Override
+ public void testInlineNamespace_305980d() throws Exception {}
+
+ //New wording for C++0x lambdas
+ @Override
+ public void testLambdaExpression_316307a() throws Exception {}
+ @Override
+ public void testLambdaExpression_316307b() throws Exception {}
+ //xvalue
+ @Override
+ public void testXValueCategories() throws Exception {}
+ @Override
+ public void testRankingOfReferenceBindings() throws Exception {}
+ @Override
+ public void testInlineNamespaceLookup_324096() throws Exception {}
+ @Override
+ public void testCtorForAutomaticVariables_156668() throws Exception {}
+ @Override
+ public void testRangeBasedForLoop_327223() throws Exception {}
//TODO ??? overwrite some failed test cases
@Override

Back to the top