mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-22 22:22:11 +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
|
* All rights reserved. This program and the accompanying materials
|
||||||
* are made available under the terms of the Eclipse Public License v1.0
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* which accompanies this distribution, and is available at
|
* which accompanies this distribution, and is available at
|
||||||
|
@ -32,7 +32,12 @@ public class LRCompletionBasicTest extends BasicCompletionTest {
|
||||||
|
|
||||||
public LRCompletionBasicTest() { }
|
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
|
@Override
|
||||||
public void testBug279931() throws Exception {}
|
public void testBug279931() throws Exception {}
|
||||||
@Override
|
@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
|
* All rights reserved. This program and the accompanying materials
|
||||||
* are made available under the terms of the Eclipse Public License v1.0
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* which accompanies this distribution, and is available at
|
* which accompanies this distribution, and is available at
|
||||||
|
@ -30,6 +30,10 @@ public class LRGCCCompleteParseExtensionsTest extends GCCCompleteParseExtensions
|
||||||
public LRGCCCompleteParseExtensionsTest() {}
|
public LRGCCCompleteParseExtensionsTest() {}
|
||||||
public LRGCCCompleteParseExtensionsTest(String name) { super(name); }
|
public LRGCCCompleteParseExtensionsTest(String name) { super(name); }
|
||||||
|
|
||||||
|
//override the test failed case for 342683
|
||||||
|
@Override
|
||||||
|
public void testTypetraits_Bug342683() throws Exception {}
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@SuppressWarnings("unused")
|
@SuppressWarnings("unused")
|
||||||
|
|
|
@ -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
|
* All rights reserved. This program and the accompanying materials
|
||||||
* are made available under the terms of the Eclipse Public License v1.0
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* which accompanies this distribution, and is available at
|
* which accompanies this distribution, and is available at
|
||||||
|
@ -28,8 +28,17 @@ public class LRTemplateTests extends AST2TemplateTests {
|
||||||
return suite(LRTemplateTests.class);
|
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
|
@Override
|
||||||
public void testNestedArguments_246079() throws Throwable {}
|
public void testNestedArguments_246079() throws Throwable {}
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Add table
Reference in a new issue