]> git.saurik.com Git - bison.git/blob - tests/c++.at
tests: check that using variants is exception safe
[bison.git] / tests / c++.at
1 # Checking the C++ Features. -*- Autotest -*-
2
3 # Copyright (C) 2004-2005, 2007-2013 Free Software Foundation, Inc.
4
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18 AT_BANNER([[C++ Features.]])
19
20
21 ## --------------------------- ##
22 ## C++ Variant-based Symbols. ##
23 ## --------------------------- ##
24
25 AT_SETUP([C++ Variant-based Symbols])
26
27 AT_KEYWORDS([variant])
28
29 AT_BISON_OPTION_PUSHDEFS([%skeleton "lalr1.cc" %debug $1])
30 # Store strings and integers in a list of strings.
31 AT_DATA_GRAMMAR([list.yy],
32 [[%skeleton "lalr1.cc"
33 %define api.value.type variant
34 %define parse.assert
35 %debug
36
37 %code top
38 {
39 // Get access to stack_symbol_type for the tests.
40 # define private public
41 }
42 %code provides
43 {
44 ]AT_YYLEX_DECLARE[
45 }
46
47 %token <int> INT "int"
48 %type < std::list<int> > exp
49
50 %printer { yyo << $$; } <int>
51 %printer
52 {
53 for (std::list<int>::const_iterator i = $$.begin (); i != $$.end (); ++i)
54 {
55 if (i != $$.begin ())
56 yyo << ", ";
57 yyo << *i;
58 }
59 } < std::list<int> >
60
61 %code requires { #include <list> }
62 %code { int yylex (yy::parser::semantic_type* yylval); }
63
64 %%
65 exp: "int" { $$.push_back ($1); }
66 %%
67 ]AT_YYERROR_DEFINE[
68 ]AT_YYLEX_DEFINE[
69
70 int main()
71 {
72 {
73 yy::parser::symbol_type s = yy::parser::make_INT(12);
74 std::cerr << s.value.as<int>() << std::endl;
75 }
76
77 {
78 yy::parser::symbol_type s = yy::parser::make_INT(123);
79 yy::parser::stack_symbol_type ss(1, s);
80 std::cerr << ss.value.as<int>() << std::endl;
81 }
82
83 {
84 yy::parser::stack_type st;
85 for (int i = 0; i < 100; ++i)
86 {
87 yy::parser::symbol_type s(yy::parser::make_INT(i));
88 yy::parser::stack_symbol_type ss(1, s);
89 st.push(ss);
90 }
91 }
92 }
93 ]])
94
95 AT_BISON_CHECK([-o list.cc list.yy])
96 AT_COMPILE_CXX([list], [$NO_STRICT_ALIAS_CXXFLAGS list.cc])
97 AT_PARSER_CHECK([./list], 0, [],
98 [12
99 123
100 ])
101
102 AT_BISON_OPTION_POPDEFS
103 AT_CLEANUP
104
105
106 ## ---------- ##
107 ## Variants. ##
108 ## ---------- ##
109
110 # AT_TEST([DIRECTIVES])
111 # ---------------------
112 # Check the support of variants in C++, with the additional DIRECTIVES.
113 m4_pushdef([AT_TEST],
114 [AT_SETUP([Variants $1])
115
116 AT_BISON_OPTION_PUSHDEFS([%skeleton "lalr1.cc" %debug $1])
117 # Store strings and integers in a list of strings.
118 AT_DATA_GRAMMAR([list.yy],
119 [[%debug
120 %skeleton "lalr1.cc"
121 %define api.value.type variant
122 ]m4_bpatsubst([$1], [\\n], [
123 ])[
124
125 %code requires // code for the .hh file
126 {
127 #include <list>
128 #include <string>
129 typedef std::list<std::string> strings_type;
130 }
131
132 %code // code for the .cc file
133 {
134 #include <cstdlib> // abort, getenv
135 #include <iostream>
136 #include <sstream>
137
138 namespace yy
139 {
140 static]AT_TOKEN_CTOR_IF([[
141 parser::symbol_type yylex ()]], [[
142 parser::token_type yylex (parser::semantic_type* yylval]AT_LOCATION_IF([,
143 parser::location_type* yylloc])[)]])[;
144 }
145
146 // Printing a list of strings (for %printer).
147 // Koening look up will look into std, since that's an std::list.
148 namespace std
149 {
150 std::ostream&
151 operator<<(std::ostream& o, const strings_type& s)
152 {
153 o << '(';
154 for (strings_type::const_iterator i = s.begin (); i != s.end (); ++i)
155 {
156 if (i != s.begin ())
157 o << ", ";
158 o << *i;
159 }
160 return o << ')';
161 }
162 }
163
164 // Conversion to string.
165 template <typename T>
166 inline
167 std::string
168 string_cast (const T& t)
169 {
170 std::ostringstream o;
171 o << t;
172 return o.str ();
173 }
174 }
175
176 %token <::std::string> TEXT;
177 %token <int> NUMBER;
178 %token END_OF_FILE 0;
179
180 %type <::std::string> item;
181 // Using the template type to exercize its parsing.
182 // Starting with :: to ensure we don't output "<::" which starts by the
183 // digraph for the left square bracket.
184 %type <::std::list<std::string>> list result;
185
186 %printer { yyo << $][$; }
187 <int> <::std::string> <::std::list<std::string>>;
188 %%
189
190 result:
191 list { std::cout << $][1 << std::endl; }
192 ;
193
194 list:
195 /* nothing */ { /* Generates an empty string list */ }
196 | list item { std::swap ($][$,$][1); $$.push_back ($][2); }
197 | list error { std::swap ($][$,$][1); }
198 ;
199
200 item:
201 TEXT { std::swap ($][$,$][1); }
202 | NUMBER { if ($][1 == 3) YYERROR; else $][$ = string_cast ($][1); }
203 ;
204 %%
205 ]AT_TOKEN_CTOR_IF([],
206 [[#ifdef TWO_STAGE_BUILD
207 # define BUILD(Type, Value) build<Type> () = Value
208 #else
209 # define BUILD(Type, Value) build (Value)
210 #endif
211 ]])[
212 #define STAGE_MAX 5
213 namespace yy
214 {
215 static]AT_TOKEN_CTOR_IF([[
216 parser::symbol_type yylex ()]], [[
217 parser::token_type yylex (parser::semantic_type* yylval]AT_LOCATION_IF([,
218 parser::location_type* yylloc])[)]])[
219 {]AT_LOCATION_IF([
220 typedef parser::location_type location;])[
221 static int stage = -1;
222 ++stage;
223 if (stage == STAGE_MAX)
224 {]AT_TOKEN_CTOR_IF([[
225 return parser::make_END_OF_FILE (]AT_LOCATION_IF([location ()])[);]],
226 [AT_LOCATION_IF([
227 *yylloc = location ();])[
228 return parser::token::END_OF_FILE;]])[
229 }
230 else if (stage % 2)
231 {]AT_TOKEN_CTOR_IF([[
232 return parser::make_NUMBER (stage]AT_LOCATION_IF([, location ()])[);]],
233 [[
234 yylval->BUILD (int, stage);]AT_LOCATION_IF([
235 *yylloc = location ();])[
236 return parser::token::NUMBER;]])[
237 }
238 else
239 {]AT_TOKEN_CTOR_IF([[
240 return parser::make_TEXT (string_cast (stage)]AT_LOCATION_IF([, location ()])[);]], [[
241 yylval->BUILD (std::string, string_cast (stage));]AT_LOCATION_IF([
242 *yylloc = location ();])[
243 return parser::token::TEXT;]])[
244 }
245 abort ();
246 }
247 }
248
249 ]AT_YYERROR_DEFINE[
250 ]AT_MAIN_DEFINE[
251 ]])
252
253 AT_BISON_CHECK([-o list.cc list.yy])
254 AT_COMPILE_CXX([list], [$NO_STRICT_ALIAS_CXXFLAGS list.cc])
255 AT_PARSER_CHECK([./list], 0,
256 [(0, 1, 2, 4)
257 ])
258
259 AT_BISON_OPTION_POPDEFS
260 AT_CLEANUP
261 ])
262
263 AT_TEST([])
264 AT_TEST([%define parse.assert])
265 AT_TEST([%locations %define parse.assert])
266 AT_TEST([[%define parse.assert %code {\n#define TWO_STAGE_BUILD\n}]])
267 AT_TEST([[%define parse.assert %define api.token.constructor]])
268 AT_TEST([[%define parse.assert %define api.token.constructor %define api.token.prefix "TOK_"]])
269 AT_TEST([[%locations %define parse.assert %define api.token.constructor %define api.token.prefix "TOK_"]])
270
271 m4_popdef([AT_TEST])
272
273
274 ## ----------------------- ##
275 ## Doxygen Documentation. ##
276 ## ----------------------- ##
277
278 m4_define([AT_CHECK_DOXYGEN],
279 [m4_case([$1],
280 [Public], [m4_pushdef([AT_DOXYGEN_PRIVATE], [NO])],
281 [Private], [m4_pushdef([AT_DOXYGEN_PRIVATE], [YES])],
282 [m4_fatal([invalid argument: $1])])
283 AT_SETUP([Doxygen $1 Documentation])
284
285 AT_BISON_OPTION_PUSHDEFS([%skeleton "lalr1.cc"])
286 AT_DATA([input.yy],
287 [[%skeleton "lalr1.cc"
288 %locations
289 %debug
290 %%
291 exp: /* empty */;
292 %%
293 ]AT_YYERROR_DEFINE[
294 ]])
295
296 AT_BISON_CHECK([-o input.cc input.yy], 0)
297
298 AT_DATA([Doxyfile],
299 [# The PROJECT_NAME tag is a single word (or a sequence of words
300 # surrounded by quotes) that should identify the project.
301 PROJECT_NAME = "Bison C++ Parser"
302
303 # The QUIET tag can be used to turn on/off the messages that are
304 # generated by doxygen. Possible values are YES and NO. If left blank
305 # NO is used.
306 QUIET = YES
307
308 # The WARNINGS tag can be used to turn on/off the warning messages
309 # that are generated by doxygen. Possible values are YES and NO. If
310 # left blank NO is used.
311 WARNINGS = YES
312 # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate
313 # warnings for undocumented members. If EXTRACT_ALL is set to YES then
314 # this flag will automatically be disabled.
315 WARN_IF_UNDOCUMENTED = YES
316 # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings
317 # for potential errors in the documentation, such as not documenting
318 # some parameters in a documented function, or documenting parameters
319 # that don't exist or using markup commands wrongly.
320 WARN_IF_DOC_ERROR = YES
321 # The WARN_FORMAT tag determines the format of the warning messages
322 # that doxygen can produce. The string should contain the $file,
323 # $line, and $text tags, which will be replaced by the file and line
324 # number from which the warning originated and the warning text.
325 WARN_FORMAT = "$file:$line: $text"
326
327 # If the EXTRACT_ALL tag is set to YES doxygen will assume all
328 # entities in documentation are documented, even if no documentation
329 # was available. Private class members and static file members will
330 # be hidden unless the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set
331 # to YES
332 EXTRACT_ALL = YES
333
334 # If the EXTRACT_PRIVATE tag is set to YES all private members of a
335 # class will be included in the documentation.
336 EXTRACT_PRIVATE = AT_DOXYGEN_PRIVATE
337
338 # If the EXTRACT_STATIC tag is set to YES all static members of a file
339 # will be included in the documentation.
340 EXTRACT_STATIC = AT_DOXYGEN_PRIVATE
341 ])
342
343 AT_CHECK([doxygen --version || exit 77], 0, ignore)
344 AT_CHECK([doxygen], 0, [], [ignore])
345
346 AT_BISON_OPTION_POPDEFS
347 AT_CLEANUP
348
349 m4_popdef([AT_DOXYGEN_PRIVATE])
350 ])# AT_CHECK_DOXYGEN
351
352 AT_CHECK_DOXYGEN([Public])
353 AT_CHECK_DOXYGEN([Private])
354
355
356 ## ------------ ##
357 ## Namespaces. ##
358 ## ------------ ##
359
360 # AT_TEST(NAMESPACE-DECL, [COMPILE-ERROR])
361 # ----------------------------------------
362 # See if Bison can handle %define namespace "NAMESPACE-DECL". If COMPILE-ERROR
363 # is specified, then Bison should accept the input, but compilation will fail,
364 # so don't check compilation.
365 m4_pushdef([AT_TEST],
366 [AT_BISON_OPTION_PUSHDEFS([%language "C++" %define api.namespace "$1"])
367 AT_DATA_GRAMMAR([[input.y]],
368 [[%language "C++"
369 %define api.namespace "]$1["
370 %union { int i; }
371 %define global_tokens_and_yystype
372 %locations
373
374 %code {
375 // YYSTYPE contains a namespace reference.
376 int yylex (YYSTYPE *lval, const ]$1[::parser::location_type*) {
377 lval->i = 3;
378 return 0;
379 }
380 }
381
382 %%
383
384 start: ;
385
386 %%
387
388 void
389 ]$1[::parser::error (const ]$1[::parser::location_type &loc,
390 const std::string &msg)
391 {
392 std::cerr << "At " << loc << ": " << msg << std::endl;
393 }
394
395 ]AT_MAIN_DEFINE[
396 ]])
397
398 AT_BISON_CHECK([[-o input.cc input.y]])
399
400 m4_if([$#], [1],
401 [AT_COMPILE_CXX([[input]], [[input.cc]])
402 AT_PARSER_CHECK([[./input]])])
403 AT_BISON_OPTION_POPDEFS
404 ])
405
406 AT_SETUP([[Relative namespace references]])
407 AT_TEST([[foo]])
408 AT_TEST([[foo::bar]])
409 AT_TEST([[foo::bar::baz]])
410 AT_CLEANUP
411
412 AT_SETUP([[Absolute namespace references]])
413 AT_TEST([[::foo]])
414 AT_TEST([[::foo::bar]])
415 AT_TEST([[::foo::bar::baz]])
416 AT_TEST([[ ::foo]])
417 AT_TEST([[ ::foo::bar]])
418 AT_TEST([[ ::foo::bar::baz]])
419 AT_CLEANUP
420
421 AT_SETUP([[Syntactically invalid namespace references]])
422 AT_TEST([[:foo:bar]], [[-]])
423 AT_TEST([[foo: :bar]], [[-]])
424 # This one is interesting because `[3]' is encoded as `@<:@3@:>@', which
425 # contains single occurrences of `:'.
426 AT_TEST([[foo[3]::bar::baz]], [[-]])
427 AT_TEST([[foo::bar,baz]], [[-]])
428 AT_TEST([[foo::bar::(baz /* Pacify Emacs ) */]], [[-]])
429 AT_CLEANUP
430
431 m4_popdef([AT_TEST])
432
433 ## -------------------------------------- ##
434 ## Syntax error discarding no lookahead. ##
435 ## -------------------------------------- ##
436
437 # After a syntax error, lalr1.cc used to not check whether there
438 # actually is a lookahead before discarding the lookahead. As a result,
439 # it mistakenly invoked the destructor for the previous lookahead.
440
441 AT_SETUP([[Syntax error discarding no lookahead]])
442
443 AT_BISON_OPTION_PUSHDEFS([%skeleton "lalr1.cc"])
444
445 AT_DATA_GRAMMAR([[input.yy]],
446 [[%skeleton "lalr1.cc"
447
448 %code {
449 #include <string>
450 int yylex (yy::parser::semantic_type *);
451 #define USE(Args)
452 }
453
454 %define parse.error verbose
455
456 %nonassoc 'a' ;
457
458 %destructor {
459 std::cerr << "Discarding 'a'." << std::endl;
460 } 'a'
461
462 %%
463
464 start: error-reduce consistent-error 'a' { USE ($3); };
465
466 error-reduce:
467 'a' 'a' consistent-error 'a' { USE (($1, $2, $4)); }
468 | 'a' error { std::cerr << "Reducing 'a'." << std::endl; USE ($1); }
469 ;
470
471 consistent-error:
472 'a'
473 | /*empty*/ %prec 'a'
474 ;
475
476 // Provide another context in which all rules are useful so that this
477 // test case looks a little more realistic.
478 start: 'b' consistent-error ;
479
480 %%
481
482 int
483 yylex (yy::parser::semantic_type *)
484 {
485 static char const *input = "aa";
486 return *input++;
487 }
488
489 void
490 yy::parser::error (const std::string &m)
491 {
492 std::cerr << m << std::endl;
493 }
494
495 ]AT_MAIN_DEFINE[
496 ]])
497
498 AT_BISON_CHECK([[-o input.cc input.yy]])
499 AT_COMPILE_CXX([[input]])
500 # This used to print "Discarding 'a'." again at the end.
501 AT_PARSER_CHECK([[./input]], [[1]], [[]],
502 [[syntax error
503 Discarding 'a'.
504 Reducing 'a'.
505 ]])
506
507 AT_BISON_OPTION_POPDEFS
508 AT_CLEANUP
509
510
511 ## --------------------------- ##
512 ## Syntax error as exception. ##
513 ## --------------------------- ##
514
515 AT_SETUP([[Syntax error as exception]])
516
517 AT_BISON_OPTION_PUSHDEFS([%skeleton "lalr1.cc"])
518
519 AT_DATA_GRAMMAR([[input.yy]],
520 [[%skeleton "lalr1.cc"
521
522 %code
523 {
524 #include <cstdlib>
525 int yylex (yy::parser::semantic_type *);
526 }
527
528 %define api.value.type variant
529 %define parse.error verbose
530 %define parse.trace
531 %%
532
533 start:
534 thing
535 | start thing
536 ;
537
538 thing:
539 error { std::cerr << "caught error" << std::endl; }
540 | item
541 ;
542
543 item:
544 'a'
545 | 's'
546 {
547 throw yy::parser::syntax_error ("invalid expression");
548 }
549
550 %%
551
552 int
553 yylex (yy::parser::semantic_type *)
554 {
555 // 's': syntax error, 'l': lexical error.
556 static char const *input = "asal";
557 switch (int res = *input++)
558 {
559 case 'l':
560 throw yy::parser::syntax_error ("invalid character");
561 default:
562 return res;
563 }
564 }
565
566 void
567 yy::parser::error (const std::string &m)
568 {
569 std::cerr << "error: " << m << std::endl;
570 }
571 ]AT_MAIN_DEFINE[
572 ]])
573
574 AT_BISON_CHECK([[-o input.cc input.yy]])
575 AT_COMPILE_CXX([[input]])
576
577 AT_PARSER_CHECK([[./input]], [[0]], [[]],
578 [[error: invalid expression
579 caught error
580 error: invalid character
581 caught error
582 ]])
583
584 AT_BISON_OPTION_POPDEFS
585 AT_CLEANUP
586
587
588 ## ------------------ ##
589 ## Exception safety. ##
590 ## ------------------ ##
591
592 # AT_TEST([BISON-DIRECTIVES])
593 # ---------------------------
594 # Check that no object is leaked when exceptions are thrown.
595 m4_pushdef([AT_TEST],
596 [AT_SETUP([[Exception safety $1]])
597
598 AT_BISON_OPTION_PUSHDEFS([%skeleton "lalr1.cc" $1])
599
600 AT_DATA_GRAMMAR([[input.yy]],
601 [[%skeleton "lalr1.cc"
602 %debug
603 %error-verbose
604 $1
605 %code requires
606 {
607 #include <cassert>
608 #include <cstdlib> // size_t and getenv.
609 #include <iostream>
610 #include <list>
611
612 bool debug = false;
613
614 /// A class that counts its number of instances.
615 struct Object
616 {
617 typedef std::list<const Object*> objects;
618 static objects instances;
619 char val;
620
621 static bool
622 empty ()
623 {
624 return instances.empty();
625 }
626
627 static void
628 log (Object const *o, const std::string& msg)
629 {
630 if (debug)
631 {
632 if (o)
633 std::cerr << o << "->";
634 std::cerr << msg << " {";
635 const char* sep = " ";
636 for (objects::const_iterator i = instances.begin(),
637 i_end = instances.end();
638 i != i_end;
639 ++i)
640 {
641 std::cerr << sep << *i;
642 sep = ", ";
643 }
644 std::cerr << " }" << std::endl;
645 }
646 }
647
648 Object (char v)
649 : val (v)
650 {
651 instances.push_back(this);
652 log (this, "Object::Object");
653 }
654
655 Object ()
656 : val ('?')
657 {
658 instances.push_back(this);
659 log (this, "Object::Object");
660 }
661
662 ~Object ()
663 {
664 instances.remove(this);
665 log (this, "Object::~Object");
666 }
667 };
668 }
669
670 %code
671 {
672 #include <cassert>
673 #include <cstring> // strchr
674 #include <stdexcept>
675 int yylex (yy::parser::semantic_type *);
676 Object::objects Object::instances;
677 static char const *input;
678 }
679
680 ]AT_VARIANT_IF([[
681 %printer
682 {
683 yyo << &$$ << " '" << $$.val << '\'';
684 if ($$.val == 'p')
685 throw std::runtime_error ("printer");
686 } <Object>;
687
688 %token <Object> 'a' 'E' 'e' 'p' 'R' 's' 'T'
689 %type <Object> list item
690 ]], [[
691 %union
692 {
693 Object *obj;
694 }
695 %destructor { delete $$; } <obj>;
696 %printer
697 {
698 yyo << $$ << " '" << $$->val << '\'';
699 if ($$->val == 'p')
700 throw std::runtime_error ("printer");
701 } <obj>;
702
703 %token <obj> 'a' 'E' 'e' 'p' 'R' 's' 'T'
704 %type <obj> list item
705 ]])[
706
707 %initial-action
708 {
709 if (strchr (input, 'i'))
710 throw std::runtime_error ("initial-action");
711 }
712
713 %%
714
715 start: list {]AT_VARIANT_IF([], [ delete $][1]; )[};
716
717 list:
718 item { $][$ = $][1; }
719 // Right recursion to load the stack.
720 | item list { $][$ = $][1; ]AT_VARIANT_IF([], [delete $][2]; )[}
721 ;
722
723 item:
724 'a' { $$][ = $][1; }
725 | 'e' { YYUSE ($][$); YYUSE($][1); error ("syntax error"); }
726 // Not just 'E', otherwise we reduce when 'E' is the lookahead, and
727 // then the stack is emptied, defeating the point of the test.
728 | 'E' 'a' { YYUSE($][1); $][$ = $][2; }
729 | 'R' { $][$ = YY_NULL; ]AT_VARIANT_IF([], [delete $][1]; )[YYERROR; }
730 | 'p' { $][$ = $][1; }
731 | 's' { $][$ = $][1; throw std::runtime_error ("reduction"); }
732 | 'T' { $][$ = YY_NULL; ]AT_VARIANT_IF([], [delete $][1]; )[YYABORT; }
733 | error { $][$ = YY_NULL; yyerrok; }
734 ;
735 %%
736
737 int
738 yylex (yy::parser::semantic_type *lvalp)
739 {
740 // 'a': no error.
741 // 'e': user action calls error.
742 // 'E': syntax error, with yyerror that throws.
743 // 'i': initial action throws.
744 // 'l': yylex throws.
745 // 'R': call YYERROR in the action
746 // 's': reduction throws.
747 // 'T': call YYABORT in the action
748 switch (int res = *input++)
749 {
750 case 'l':
751 throw std::runtime_error ("yylex");
752 default:
753 lvalp]AT_VARIANT_IF([->build (res)], [->obj = new Object (res)])[;
754 // Fall through.
755 case 0:
756 return res;
757 }
758 }
759
760 /* A C++ error reporting function. */
761 void
762 yy::parser::error (const std::string& m)
763 {
764 throw std::runtime_error (m);
765 }
766
767 int
768 main (int argc, const char *argv[])
769 {
770 switch (argc)
771 {
772 case 2:
773 input = argv[1];
774 break;
775 case 3:
776 assert (std::string(argv[1]) == "--debug");
777 debug = 1;
778 input = argv[2];
779 break;
780 default:
781 abort ();
782 }
783
784 yy::parser parser;
785 debug |= !!getenv ("YYDEBUG");
786 parser.set_debug_level (debug);
787 int res = 2;
788 try
789 {
790 res = parser.parse ();
791 }
792 catch (const std::exception& e)
793 {
794 std::cerr << "exception caught: " << e.what () << std::endl;
795 }
796 catch (...)
797 {
798 std::cerr << "unknown exception caught" << std::endl;
799 }
800 Object::log (YY_NULL, "end");
801 assert (Object::empty());
802 return res;
803 }
804 ]])
805 AT_BISON_CHECK([[-o input.cc --report=all input.yy]])
806 AT_COMPILE_CXX([[input]])
807
808 AT_PARSER_CHECK([[./input aaaas]], [[2]], [[]],
809 [[exception caught: reduction
810 ]])
811
812 AT_PARSER_CHECK([[./input aaaal]], [[2]], [[]],
813 [[exception caught: yylex
814 ]])
815
816 AT_PARSER_CHECK([[./input i]], [[2]], [[]],
817 [[exception caught: initial-action
818 ]])
819
820 AT_PARSER_CHECK([[./input aaaap]])
821
822 AT_PARSER_CHECK([[./input --debug aaaap]], [[2]], [[]], [[stderr]])
823 AT_CHECK([[grep '^exception caught: printer$' stderr]], [], [ignore])
824
825 AT_PARSER_CHECK([[./input aaaae]], [[2]], [[]],
826 [[exception caught: syntax error
827 ]])
828
829 AT_PARSER_CHECK([[./input aaaaE]], [[2]], [[]],
830 [[exception caught: syntax error, unexpected $end, expecting 'a'
831 ]])
832
833 AT_PARSER_CHECK([[./input aaaaT]], [[1]])
834
835 # There is error-recovery, so exit success.
836 AT_PARSER_CHECK([[./input aaaaR]], [[0]])
837
838 AT_BISON_OPTION_POPDEFS
839
840 AT_CLEANUP
841 ])
842
843 AT_TEST
844 AT_TEST([%define api.value.type variant])
845
846 m4_popdef([AT_TEST])
847
848 ## ------------------------------------ ##
849 ## C++ GLR parser identifier shadowing ##
850 ## ------------------------------------ ##
851
852 AT_SETUP([[C++ GLR parser identifier shadowing]])
853
854 AT_DATA_GRAMMAR([input.yy], [
855 %skeleton "glr.cc"
856
857 %union
858 {
859 int ival;
860 }
861
862 %token <ival> ZERO;
863
864 %code
865 {
866 int yylex (yy::parser::semantic_type *yylval);
867 }
868
869 %%
870 exp: ZERO
871
872 %%
873
874 int yylex (yy::parser::semantic_type *yylval)
875 {
876 // Note: this argument is unused, but named on purpose. There used to be a
877 // bug with a macro that erroneously expanded this identifier to
878 // yystackp->yyval.
879 YYUSE (yylval);
880 return yy::parser::token::ZERO;
881 }
882
883 void yy::parser::error (std::string const&)
884 {}
885
886 int main()
887 {}
888 ])
889
890 AT_BISON_CHECK([[-o input.cc input.yy]])
891 AT_COMPILE_CXX([[input]])
892
893 AT_CLEANUP