Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'lrparser/org.eclipse.cdt.core.lrparser.tests/src/org/eclipse/cdt/core/lrparser/tests/LRTests.java')
-rw-r--r--lrparser/org.eclipse.cdt.core.lrparser.tests/src/org/eclipse/cdt/core/lrparser/tests/LRTests.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/lrparser/org.eclipse.cdt.core.lrparser.tests/src/org/eclipse/cdt/core/lrparser/tests/LRTests.java b/lrparser/org.eclipse.cdt.core.lrparser.tests/src/org/eclipse/cdt/core/lrparser/tests/LRTests.java
index 24a297126d0..e9ad575582f 100644
--- a/lrparser/org.eclipse.cdt.core.lrparser.tests/src/org/eclipse/cdt/core/lrparser/tests/LRTests.java
+++ b/lrparser/org.eclipse.cdt.core.lrparser.tests/src/org/eclipse/cdt/core/lrparser/tests/LRTests.java
@@ -154,5 +154,15 @@ public class LRTests extends AST2Tests {
public void _testCastVsFunctionCallAmbiguities_Bug237057() throws Exception {
super.testCastVsFunctionCallAmbiguities_Bug237057();
}
+
+
+ /* The LR parser generates the AST for switch statements
+ * differently than the DOM parser.
+ */
+ @Override
+ public void testCaseRange_Bug211882() { }
+ public void _testCaseRange_Bug211882() throws Exception {
+ super.testCaseRange_Bug211882();
+ }
}

Back to the top