mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-22 14:12:10 +02:00
Bug 348426 - Disable failed test cases in LR parser that are inherited from CDT DOM Parser test for John Liu
This commit is contained in:
parent
88fcec59fd
commit
df7434c2bc
3 changed files with 23 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2006, 2010 IBM Corporation and others.
|
||||
* Copyright (c) 2006, 2011 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
|
||||
|
@ -32,7 +32,12 @@ public class LRCompletionBasicTest extends BasicCompletionTest {
|
|||
|
||||
public LRCompletionBasicTest() { }
|
||||
|
||||
//TODO ??? overwrite some failed test cases
|
||||
//override the test failed case for 340664
|
||||
@Override
|
||||
public void testCompletionInSizeof340664() throws Exception {}
|
||||
|
||||
|
||||
//override some failed test cases
|
||||
@Override
|
||||
public void testBug279931() throws Exception {}
|
||||
@Override
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2006, 2009 IBM Corporation and others.
|
||||
* Copyright (c) 2006, 2011 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
|
||||
|
@ -29,6 +29,10 @@ public class LRGCCCompleteParseExtensionsTest extends GCCCompleteParseExtensions
|
|||
|
||||
public LRGCCCompleteParseExtensionsTest() {}
|
||||
public LRGCCCompleteParseExtensionsTest(String name) { super(name); }
|
||||
|
||||
//override the test failed case for 342683
|
||||
@Override
|
||||
public void testTypetraits_Bug342683() throws Exception {}
|
||||
|
||||
|
||||
@Override
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2006, 2010 IBM Corporation and others.
|
||||
* Copyright (c) 2006, 2011 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
|
||||
|
@ -28,8 +28,17 @@ public class LRTemplateTests extends AST2TemplateTests {
|
|||
return suite(LRTemplateTests.class);
|
||||
}
|
||||
|
||||
//override the test failed cases of 341747
|
||||
@Override
|
||||
public void testTemplateIDAmbiguity_341747a() throws Exception{}
|
||||
@Override
|
||||
public void testTemplateIDAmbiguity_341747b() throws Exception{}
|
||||
@Override
|
||||
public void testTemplateIDAmbiguity_341747c() throws Exception{}
|
||||
@Override
|
||||
public void testTemplateIDAmbiguity_341747d() throws Exception{}
|
||||
|
||||
//TODO ??? overwrite some failed test cases
|
||||
//override some failed test cases
|
||||
@Override
|
||||
public void testNestedArguments_246079() throws Throwable {}
|
||||
@Override
|
||||
|
|
Loading…
Add table
Reference in a new issue