Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a532402c80f2b33ff738bd5f326b50f1d6c314d8 (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
146
147
148
149
150
151
152
153
154
/*******************************************************************************
 *  Copyright (c) 2006, 2009 IBM Corporation and others.
 *
 *  This program and the accompanying materials
 *  are made available under the terms of the Eclipse Public License 2.0
 *  which accompanies this distribution, and is available at
 *  https://www.eclipse.org/legal/epl-2.0/
 *
 *  SPDX-License-Identifier: EPL-2.0
 *
 *  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.gnu.GCCLanguage;
import org.eclipse.cdt.core.dom.lrparser.gnu.GPPLanguage;
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);
	}

	public LRCompleteParser2Tests() {
	}

	public LRCompleteParser2Tests(String name) {
		super(name);
	}

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

	protected ILanguage getCLanguage() {
		return GCCLanguage.getDefault();
	}

	protected ILanguage getCPPLanguage() {
		return GPPLanguage.getDefault();
	}

	// Tests that are failing at this point

	//	@Override
	//	public void testBug39676_tough() { // is this C99?
	//		try {
	//			super.testBug39676_tough();
	//		} catch(AssertionFailedError expectedException) {
	//			return;
	//		} catch(Exception expectedException) {
	//			return;
	//		}
	//		fail();
	//	}

	//	public void testPredefinedSymbol_bug70928_infinite_loop_test1() throws Exception { // gcc extension
	//		try {
	//			super.testPredefinedSymbol_bug70928_infinite_loop_test1();
	//			fail();
	//		} catch(AssertionError expectedException) { }
	//	}
	//
	//	public void testPredefinedSymbol_bug70928_infinite_loop_test2() throws Exception { // gcc extension
	//		try {
	//			super.testPredefinedSymbol_bug70928_infinite_loop_test2();
	//			fail();
	//		} catch(AssertionError expectedException) { }
	//	}

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

	//	@Override
	//	public void test158192_declspec_in_declarator() throws Exception {
	//		try {
	//			super.test158192_declspec_in_declarator();
	//			fail();
	//		} catch(AssertionFailedError expectedException) { }
	//	}
	//
	//	@Override
	//	public void test158192_declspec_on_class() throws Exception {
	//		try {
	//			super.test158192_declspec_on_class();
	//			fail();
	//		} catch(AssertionFailedError expectedException) { }
	//	}
	//
	//	@Override
	//	public void test158192_declspec_on_variable() throws Exception {
	//		try {
	//			super.test158192_declspec_on_variable();
	//			fail();
	//		} catch(AssertionFailedError expectedException) { }
	//	}
	//
	//	@Override
	//	public void testPredefinedSymbol_bug70928() throws Exception {
	//		try {
	//			super.testPredefinedSymbol_bug70928();
	//			fail();
	//		} catch(AssertionFailedError expectedException) { }
	//	}

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

	//
	//	@Override
	//	public void testGNUASMExtension() throws Exception {
	//		try {
	//			super.testGNUASMExtension();
	//			fail();
	//		} catch(AssertionFailedError expectedException) {
	//		} catch(AssertionError expectedException) {
	//		}
	//	}
	//
	//	@Override
	//	public void testBug39551B() throws Exception {
	//		try {
	//			super.testBug39551B();
	//			fail();
	//		} catch(AssertionFailedError expectedException) { }
	//	}
	//
	//
	//

}

Back to the top