Skip to main content
summaryrefslogtreecommitdiffstats
blob: 58cb19126e46c8d2619d59696c18124566f7d20f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/*******************************************************************************
 * Copyright (c) 2006, 2008 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
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.core.lrparser.tests;

import junit.framework.AssertionFailedError;
import junit.framework.TestSuite;

import org.eclipse.cdt.core.dom.ast.IASTTranslationUnit;
import org.eclipse.cdt.core.dom.lrparser.c99.C99Language;
import org.eclipse.cdt.core.dom.lrparser.cpp.ISOCPPLanguage;
import org.eclipse.cdt.core.model.ILanguage;
import org.eclipse.cdt.core.parser.ParserLanguage;
import org.eclipse.cdt.core.parser.tests.ast2.CompleteParser2Tests;

public class LRCompleteParser2Tests extends CompleteParser2Tests {

	public static TestSuite suite() {
        return suite(LRCompleteParser2Tests.class);
    }
	
	@Override
	@SuppressWarnings("unused") 
	protected IASTTranslationUnit parse(String code, boolean expectedToPass,
			ParserLanguage lang, boolean gcc) throws Exception {
		ILanguage language = lang.isCPP() ? getCPPLanguage() : getC99Language();
		return ParseHelper.parse(code, language, expectedToPass);
	}

	protected ILanguage getC99Language() {
    	return C99Language.getDefault();
    }
	
	protected ILanguage getCPPLanguage() {
		return ISOCPPLanguage.getDefault();
	}
	
	
	// Tests that are failing at this point
    
	@Override
	public void testBug39676_tough() { // is this C99?
		try {
			super.testBug39676_tough();
		} catch(AssertionFailedError _) {
			return;
		} catch(Exception _) {
			return;
		}
		fail();
	} 
	
//	public void testPredefinedSymbol_bug70928_infinite_loop_test1() throws Exception { // gcc extension
//		try {
//			super.testPredefinedSymbol_bug70928_infinite_loop_test1();
//			fail();
//		} catch(AssertionError _) { }
//	}
//	
//	public void testPredefinedSymbol_bug70928_infinite_loop_test2() throws Exception { // gcc extension
//		try {
//			super.testPredefinedSymbol_bug70928_infinite_loop_test2();
//			fail();
//		} catch(AssertionError _) { }
//	}

	
	@Override
	public void testBug102376() throws Exception { // gcc extension
		try {
			super.testBug102376();
			fail();
		} catch(AssertionFailedError _) { }
	}

	@Override
	public void test158192_declspec_in_declarator() throws Exception {
		try {
			super.test158192_declspec_in_declarator();
			fail();
		} catch(AssertionFailedError _) { }
	}

	@Override
	public void test158192_declspec_on_class() throws Exception {
		try {
			super.test158192_declspec_on_class();
			fail();
		} catch(AssertionFailedError _) { }
	}

	@Override
	public void test158192_declspec_on_variable() throws Exception {
		try {
			super.test158192_declspec_on_variable();
			fail();
		} catch(AssertionFailedError _) { }
	}
	
	@Override
	public void testPredefinedSymbol_bug70928() throws Exception {
		try {
			super.testPredefinedSymbol_bug70928();
			fail();
		} catch(AssertionFailedError _) { }
	}
	
	@Override
	public void testBug64010() throws Exception { // 10000 else-ifs, busts LPG's stack
		try {
			//super.testBug64010();
			//fail();
		} catch(AssertionFailedError _) { }
	}
	
	
	@Override
	public void testGNUASMExtension() throws Exception {
		try {
			super.testGNUASMExtension();
			fail();
		} catch(AssertionFailedError _) { 
		} catch(AssertionError _) {
		}		
	}

	@Override
	public void testBug39551B() throws Exception {
		try {
			super.testBug39551B();
			fail();
		} catch(AssertionFailedError _) { }
	}
	
	
	
	
}

Back to the top