]> git.saurik.com Git - bison.git/blame - tests/c++.at
build: beware of Clang++ not supporting POSIXLY_CORRECT
[bison.git] / tests / c++.at
CommitLineData
535ee0cb 1# Checking the C++ Features. -*- Autotest -*-
6e30ede8 2
c932d613 3# Copyright (C) 2004-2005, 2007, 2009-2012 Free Software Foundation,
ea0a7676 4# Inc.
e019c247 5
f16b0819 6# This program is free software: you can redistribute it and/or modify
e019c247 7# it under the terms of the GNU General Public License as published by
f16b0819
PE
8# the Free Software Foundation, either version 3 of the License, or
9# (at your option) any later version.
10#
e019c247
AD
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
f16b0819 15#
e019c247 16# You should have received a copy of the GNU General Public License
f16b0819 17# along with this program. If not, see <http://www.gnu.org/licenses/>.
e019c247
AD
18
19AT_BANNER([[C++ Features.]])
20
21
22## ----------------------- ##
23## Doxygen Documentation. ##
24## ----------------------- ##
25
26m4_define([AT_CHECK_DOXYGEN],
27[m4_case([$1],
28 [Public], [m4_pushdef([AT_DOXYGEN_PRIVATE], [NO])],
29 [Private], [m4_pushdef([AT_DOXYGEN_PRIVATE], [YES])],
30 [m4_fatal([invalid argument: $1])])
31AT_SETUP([Doxygen $1 Documentation])
32
535ee0cb 33AT_BISON_OPTION_PUSHDEFS([%skeleton "lalr1.cc"])
e019c247
AD
34AT_DATA([input.yy],
35[[%skeleton "lalr1.cc"
36%locations
37%debug
38%defines
39%%
40exp:;
41%%
535ee0cb 42]AT_YYERROR_DEFINE[
e019c247
AD
43]])
44
da730230 45AT_BISON_CHECK([-o input.cc input.yy], 0)
e019c247
AD
46
47AT_DATA([Doxyfile],
48[# The PROJECT_NAME tag is a single word (or a sequence of words
49# surrounded by quotes) that should identify the project.
50PROJECT_NAME = "Bison C++ Parser"
51
52# The QUIET tag can be used to turn on/off the messages that are
53# generated by doxygen. Possible values are YES and NO. If left blank
54# NO is used.
55QUIET = YES
56
57# The WARNINGS tag can be used to turn on/off the warning messages
58# that are generated by doxygen. Possible values are YES and NO. If
59# left blank NO is used.
60WARNINGS = YES
61# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate
62# warnings for undocumented members. If EXTRACT_ALL is set to YES then
63# this flag will automatically be disabled.
64WARN_IF_UNDOCUMENTED = YES
65# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings
66# for potential errors in the documentation, such as not documenting
67# some parameters in a documented function, or documenting parameters
68# that don't exist or using markup commands wrongly.
69WARN_IF_DOC_ERROR = YES
70# The WARN_FORMAT tag determines the format of the warning messages
71# that doxygen can produce. The string should contain the $file,
72# $line, and $text tags, which will be replaced by the file and line
73# number from which the warning originated and the warning text.
74WARN_FORMAT = "$file:$line: $text"
75
76# If the EXTRACT_ALL tag is set to YES doxygen will assume all
77# entities in documentation are documented, even if no documentation
78# was available. Private class members and static file members will
79# be hidden unless the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set
80# to YES
81EXTRACT_ALL = YES
82
83# If the EXTRACT_PRIVATE tag is set to YES all private members of a
84# class will be included in the documentation.
85EXTRACT_PRIVATE = AT_DOXYGEN_PRIVATE
86
87# If the EXTRACT_STATIC tag is set to YES all static members of a file
88# will be included in the documentation.
89EXTRACT_STATIC = AT_DOXYGEN_PRIVATE
90])
91
92AT_CHECK([doxygen --version || exit 77], 0, ignore)
93AT_CHECK([doxygen], 0, [], [ignore])
94
535ee0cb 95AT_BISON_OPTION_POPDEFS
e019c247
AD
96AT_CLEANUP
97
98m4_popdef([AT_DOXYGEN_PRIVATE])
99])# AT_CHECK_DOXYGEN
100
101AT_CHECK_DOXYGEN([Public])
102AT_CHECK_DOXYGEN([Private])
793fbca5
JD
103
104## ------------ ##
105## Namespaces. ##
106## ------------ ##
107
108# AT_CHECK_NAMESPACE(NAMESPACE-DECL, [COMPILE-ERROR])
109# ---------------------------------------------------
110# See if Bison can handle %define namespace "NAMESPACE-DECL". If COMPILE-ERROR
111# is specified, then Bison should accept the input, but compilation will fail,
112# so don't check compilation.
113m4_define([AT_CHECK_NAMESPACE],
114[
115
116AT_DATA_GRAMMAR([[input.y]],
117[[%language "C++"
118%defines
119%define namespace "]$1["
120%union { int i; }
121%define global_tokens_and_yystype
122
123%code {
124 // YYSTYPE contains a namespace reference.
125 int yylex (YYSTYPE *lval) {
126 lval->i = 3;
127 return 0;
128 }
129}
130
131%%
132
133start: ;
134
135%%
136
137void
138]$1[::parser::error (const ]$1[::parser::location_type &loc,
139 const std::string &msg)
140{
141 std::cerr << "At " << loc << ": " << msg << std::endl;
142}
143
144int
145main (void)
146{
147 ]$1[::parser p;
148 return p.parse ();
149}
150]])
151
da730230 152AT_BISON_CHECK([[-o input.cc input.y]])
793fbca5
JD
153
154m4_if([$#], [1],
155[AT_COMPILE_CXX([[input]], [[input.cc]])
156AT_PARSER_CHECK([[./input]])])
157
158])
159
160AT_SETUP([[Relative namespace references]])
161AT_CHECK_NAMESPACE([[foo]])
162AT_CHECK_NAMESPACE([[foo::bar]])
163AT_CHECK_NAMESPACE([[foo::bar::baz]])
164AT_CLEANUP
165
166AT_SETUP([[Absolute namespace references]])
167AT_CHECK_NAMESPACE([[::foo]])
168AT_CHECK_NAMESPACE([[::foo::bar]])
169AT_CHECK_NAMESPACE([[::foo::bar::baz]])
170AT_CHECK_NAMESPACE([[ ::foo]])
171AT_CHECK_NAMESPACE([[ ::foo::bar]])
172AT_CHECK_NAMESPACE([[ ::foo::bar::baz]])
173AT_CLEANUP
174
175AT_SETUP([[Syntactically invalid namespace references]])
176AT_CHECK_NAMESPACE([[:foo:bar]], [[-]])
177AT_CHECK_NAMESPACE([[foo: :bar]], [[-]])
178# This one is interesting because `[3]' is encoded as `@<:@3@:>@', which
179# contains single occurrences of `:'.
180AT_CHECK_NAMESPACE([[foo[3]::bar::baz]], [[-]])
181AT_CHECK_NAMESPACE([[foo::bar,baz]], [[-]])
182AT_CHECK_NAMESPACE([[foo::bar::(baz]], [[-]])
183AT_CLEANUP
cff92661
AD
184
185
186## ------------------ ##
187## Exception safety. ##
188## ------------------ ##
189
190AT_SETUP([[Exception safety]])
191
192AT_BISON_OPTION_PUSHDEFS([%skeleton "lalr1.cc"])
193
194AT_DATA_GRAMMAR([[input.yy]],
195[[%skeleton "lalr1.cc"
196%defines // FIXME: Mandated in 2.6.
197%debug
e8b86af8 198%error-verbose
cff92661
AD
199
200%code requires
201{
e8b86af8 202 #include <cassert>
cff92661
AD
203 #include <cstdlib> // size_t and getenv.
204 #include <iostream>
e8b86af8 205 #include <list>
cff92661 206
e8b86af8 207 bool debug = false;
cff92661 208
25a6ad2f 209 /// A class that counts its number of instances.
cff92661
AD
210 struct Object
211 {
e8b86af8
AD
212 typedef std::list<const Object*> objects;
213 static objects instances;
214 char val;
cff92661 215
e8b86af8
AD
216 static bool
217 empty ()
218 {
219 return instances.empty();
220 }
221
222 static void
223 log (Object const *o, const std::string& msg)
cff92661 224 {
cff92661 225 if (debug)
e8b86af8
AD
226 {
227 if (o)
228 std::cerr << o << "->";
229 std::cerr << msg << " {";
230 const char* sep = " ";
231 for (objects::const_iterator i = instances.begin(),
232 i_end = instances.end();
233 i != i_end;
234 ++i)
235 {
236 std::cerr << sep << *i;
237 sep = ", ";
238 }
239 std::cerr << " }" << std::endl;
240 }
241 }
242
243 Object (char v)
244 : val (v)
245 {
246 instances.push_back(this);
247 log (this, "Object::Object");
cff92661
AD
248 }
249
250 ~Object ()
251 {
e8b86af8
AD
252 instances.remove(this);
253 log (this, "Object::~Object");
cff92661
AD
254 }
255 };
256}
257
258%code
259{
260 #include <cassert>
a2642464 261 #include <cstring> // strchr
cff92661
AD
262 #include <stdexcept>
263 int yylex (yy::parser::semantic_type *);
e8b86af8 264 Object::objects Object::instances;
cff92661
AD
265 static char const *input;
266}
267
268%union
269{
e8b86af8 270 Object *obj;
cff92661
AD
271}
272
a2642464
AD
273%initial-action
274{
275 if (strchr (input, 'i'))
276 throw std::runtime_error ("initial-action");
277}
278
cff92661 279%destructor { delete $$; } <obj>;
25a6ad2f
AD
280%printer
281{
e8b86af8 282 yyo << $$ << " '" << $$->val << '\'';
25a6ad2f
AD
283 if ($$->val == 'p')
284 throw std::runtime_error ("printer");
285} <obj>;
cff92661 286
e8b86af8 287%token <obj> 'a' 'E' 'e' 'p' 'R' 's' 'T'
cff92661
AD
288%type <obj> list item
289
290%%
291
292start: list { delete $1; };
293
294list:
295 item { $$ = $1; }
25a6ad2f 296| item list { $$ = $1; delete $2; } // Right recursion to load the stack.
cff92661
AD
297;
298
299item:
e8b86af8
AD
300 'a' { $$ = $1; }
301| 'e' { YYUSE ($$); YYUSE($1); error (location_type(), "syntax error"); }
302// Not just 'E', otherwise we reduce when 'E' is the lookahead, and
303// then the stack is emptied, defeating the point of the test.
304| 'E' 'a' { YYUSE($1); $$ = $2; }
305| 'R' { $$ = YY_NULL; delete $1; YYERROR; }
306| 'p' { $$ = $1; }
307| 's' { $$ = $1; throw std::runtime_error ("reduction"); }
308| 'T' { $$ = YY_NULL; delete $1; YYABORT; }
309| error { $$ = YY_NULL; yyerrok; }
310;
cff92661
AD
311%%
312
313int
314yylex (yy::parser::semantic_type *lvalp)
315{
a2642464 316 // 'a': no error.
e8b86af8
AD
317 // 'e': user action calls error.
318 // 'E': syntax error, with yyerror that throws.
a2642464
AD
319 // 'i': initial action throws.
320 // 'l': yylex throws.
e8b86af8 321 // 'R': call YYERROR in the action
a2642464 322 // 's': reduction throws.
e8b86af8 323 // 'T': call YYABORT in the action
cff92661
AD
324 switch (int res = *input++)
325 {
326 case 'l':
a2642464 327 throw std::runtime_error ("yylex");
cff92661 328 default:
25a6ad2f 329 lvalp->obj = new Object (res);
cff92661
AD
330 // Fall through.
331 case 0:
332 return res;
333 }
334}
335
e8b86af8
AD
336/* A C++ error reporting function. */
337void
338yy::parser::error (const location_type& l, const std::string& m)
339{
340 YYUSE (l);
341 throw std::runtime_error (m);
342}
cff92661
AD
343
344int
345main (int argc, const char *argv[])
346{
25a6ad2f
AD
347 switch (argc)
348 {
349 case 2:
350 input = argv[1];
351 break;
352 case 3:
353 assert (!strcmp (argv[1], "--debug"));
354 debug = 1;
355 input = argv[2];
356 break;
357 default:
358 abort ();
359 }
360
cff92661 361 yy::parser parser;
25a6ad2f 362 debug |= !!getenv ("YYDEBUG");
cff92661
AD
363 parser.set_debug_level (debug);
364 int res = 2;
365 try
366 {
367 res = parser.parse ();
368 }
369 catch (const std::exception& e)
370 {
371 std::cerr << "exception caught: " << e.what () << std::endl;
372 }
373 catch (...)
374 {
375 std::cerr << "unknown exception caught" << std::endl;
376 }
e8b86af8
AD
377 Object::log (YY_NULL, "end");
378 assert (Object::empty());
cff92661
AD
379 return res;
380}
381]])
e8b86af8 382AT_BISON_CHECK([[-o input.cc --report=all input.yy]])
cff92661
AD
383AT_COMPILE_CXX([[input]])
384
385AT_PARSER_CHECK([[./input aaaas]], [[2]], [[]],
a2642464 386[[exception caught: reduction
cff92661
AD
387]])
388
389AT_PARSER_CHECK([[./input aaaal]], [[2]], [[]],
a2642464
AD
390[[exception caught: yylex
391]])
392
393AT_PARSER_CHECK([[./input i]], [[2]], [[]],
394[[exception caught: initial-action
cff92661
AD
395]])
396
25a6ad2f
AD
397AT_PARSER_CHECK([[./input aaaap]])
398
399AT_PARSER_CHECK([[./input --debug aaaap]], [[2]], [[]], [[stderr]])
ebbc76d0 400AT_CHECK([[grep '^exception caught: printer$' stderr]], [], [ignore])
25a6ad2f 401
e8b86af8
AD
402AT_PARSER_CHECK([[./input aaaae]], [[2]], [[]],
403[[exception caught: syntax error
404]])
405
406AT_PARSER_CHECK([[./input aaaaE]], [[2]], [[]],
407[[exception caught: syntax error, unexpected $end, expecting 'a'
408]])
409
410AT_PARSER_CHECK([[./input aaaaT]], [[1]])
411
412# There is error-recovery, so exit success.
413AT_PARSER_CHECK([[./input aaaaR]], [[0]])
414
cff92661
AD
415AT_BISON_OPTION_POPDEFS
416
417AT_CLEANUP