1 # Checking the Bison scanner. -*- Autotest -*-
3 # Copyright (C) 2002-2013 Free Software Foundation, Inc.
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.
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.
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/>.
18 AT_BANNER([[Input Processing.]])
20 # Mostly test that we are robust to mistakes.
23 ## ----------------- ##
24 ## Invalid options. ##
25 ## ----------------- ##
27 AT_SETUP([Invalid options])
34 # We used to accept these, as -f, --report and others were sharing
36 AT_BISON_CHECK([-ferror=caret input.y], [1], [], [ignore])
37 AT_BISON_CHECK([--report=error=itemsets input.y], [1], [], [ignore])
42 ## ---------------- ##
44 ## ---------------- ##
46 AT_SETUP([Invalid inputs])
58 AT_CHECK([[$PERL -pi -e 's/\\(\d{3})/chr(oct($1))/ge' input.y || exit 77]])
60 AT_BISON_CHECK([input.y], [1], [],
61 [[input.y:1.1-2: error: invalid characters: '\0\001\002\377?'
62 input.y:3.1: error: invalid character: '?'
63 input.y:4.14: error: invalid character: '}'
64 input.y:5.1: error: invalid character: '%'
65 input.y:5.2: error: invalid character: '&'
66 input.y:6.1-17: error: invalid directive: '%a-does-not-exist'
67 input.y:7.1: error: invalid character: '%'
68 input.y:7.2: error: invalid character: '-'
69 input.y:8.1-9.0: error: missing '%}' at end of file
70 input.y:8.1-9.0: error: syntax error, unexpected %{...%}
76 AT_SETUP([Invalid inputs with {}])
78 # We used to SEGV here. See
79 # http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html
91 AT_BISON_CHECK([input.y], [1], [],
92 [[input.y:3.1-15: error: syntax error, unexpected %initial-action, expecting {...}
103 AT_SETUP([Invalid $n and @n])
111 AT_BISON_CHECK([-fcaret input.y], [1], [],
112 [[input.y:2.13-14: error: integer out of range: '$1'
115 input.y:3.13-14: error: integer out of range: '@1'
127 AT_SETUP([Type Clashes])
130 [[%union { int bar; }
134 exp: foo { $$; } foo { $2; } foo
140 AT_BISON_CHECK([-fcaret input.y], [1], [],
141 [[input.y:5.12-13: error: $$ for the midrule at $2 of 'exp' has no declared type
142 exp: foo { $$; } foo { $2; } foo
144 input.y:5.24-25: error: $2 of 'exp' has no declared type
145 exp: foo { $$; } foo { $2; } foo
147 input.y:5.6-32: warning: type clash on default action: <bar> != <> [-Wother]
148 exp: foo { $$; } foo { $2; } foo
149 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
150 input.y:6.6-8: warning: type clash on default action: <bar> != <> [-Wother]
153 input.y:7.5: warning: empty rule for typed nonterminal, and no action [-Wother]
161 # _AT_UNUSED_VALUES_DECLARATIONS()
162 # --------------------------------
163 # Generate the token, type, and destructor
164 # declarations for the unused values tests.
165 m4_define([_AT_UNUSED_VALUES_DECLARATIONS],
166 [[[%token <integer> INT;
167 %type <integer> a b c d e f g h i j k l;
168 %destructor { destroy ($$); } INT a b c d e f g h i j k l;]]])
171 # AT_CHECK_UNUSED_VALUES(DECLARATIONS_AFTER, CHECK_MIDRULE_VALUES)
172 # ----------------------------------------------------------------
173 # Generate a grammar to test unused values, compile it, run it. If
174 # DECLARATIONS_AFTER is set, then the token, type, and destructor
175 # declarations are generated after the rules rather than before. If
176 # CHECK_MIDRULE_VALUES is set, then --warnings=midrule-values is set.
177 m4_define([AT_CHECK_UNUSED_VALUES],
182 ], [_AT_UNUSED_VALUES_DECLARATIONS
185 'a' a { $]2[; } | 'b' b { $]2[; } | 'c' c { $]2[; } | 'd' d { $]2[; }
186 | 'e' e { $]2[; } | 'f' f { $]2[; } | 'g' g { $]2[; } | 'h' h { $]2[; }
187 | 'i' i { $]2[; } | 'j' j { $]2[; } | 'k' k { $]2[; } | 'l' l { $]2[; }
190 a: INT | INT { } INT { } INT { };
191 b: INT | /* empty */;
192 c: INT | INT { $]1[; } INT { $<integer>2; } INT { $<integer>4; };
193 d: INT | INT { } INT { $]1[; } INT { $<integer>2; };
194 e: INT | INT { } INT { } INT { $]1[; };
195 f: INT | INT { } INT { } INT { $]$[ = $]1[ + $]3[ + $]5[; };
196 g: INT | INT { $<integer>$; } INT { $<integer>$; } INT { };
197 h: INT | INT { $<integer>$; } INT { $<integer>$ = $<integer>2; } INT { };
198 i: INT | INT INT { } { $]$[ = $]1[ + $]2[; };
199 j: INT | INT INT { $<integer>$ = 1; } { $]$[ = $]1[ + $]2[; };
200 k: INT | INT INT { $<integer>$; } { $<integer>$ = $<integer>3; } { };
201 l: INT | INT { $<integer>$ = $<integer>1; } INT { $<integer>$ = $<integer>2 + $<integer>3; } INT { $<integer>$ = $<integer>4 + $<integer>5; };]]m4_ifval($1, [
202 _AT_UNUSED_VALUES_DECLARATIONS])
205 AT_BISON_CHECK(m4_ifval($2, [--warnings=midrule-values ])[-fcaret input.y],
207 [[input.y:11.10-32: warning: unset value: $][$ [-Wother]
208 a: INT | INT { } INT { } INT { };
209 ^^^^^^^^^^^^^^^^^^^^^^^
210 input.y:11.10-12: warning: unused value: $][1 [-Wother]
211 a: INT | INT { } INT { } INT { };
213 input.y:11.18-20: warning: unused value: $][3 [-Wother]
214 a: INT | INT { } INT { } INT { };
216 input.y:11.26-28: warning: unused value: $][5 [-Wother]
217 a: INT | INT { } INT { } INT { };
219 input.y:12.9: warning: empty rule for typed nonterminal, and no action [-Wother]
220 b: INT | /* empty */;
222 ]]m4_ifval($2, [[[input.y:13.14-20: warning: unset value: $][$ [-Wmidrule-values]
223 c: INT | INT { $][1; } INT { $<integer>2; } INT { $<integer>4; };
225 input.y:13.26-41: warning: unset value: $][$ [-Wmidrule-values]
226 c: INT | INT { $][1; } INT { $<integer>2; } INT { $<integer>4; };
228 ]]])[[input.y:13.10-62: warning: unset value: $][$ [-Wother]
229 c: INT | INT { $][1; } INT { $<integer>2; } INT { $<integer>4; };
230 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
231 input.y:13.22-24: warning: unused value: $][3 [-Wother]
232 c: INT | INT { $][1; } INT { $<integer>2; } INT { $<integer>4; };
234 input.y:13.43-45: warning: unused value: $][5 [-Wother]
235 c: INT | INT { $][1; } INT { $<integer>2; } INT { $<integer>4; };
237 ]]m4_ifval($2, [[[input.y:14.14-16: warning: unset value: $][$ [-Wmidrule-values]
238 d: INT | INT { } INT { $][1; } INT { $<integer>2; };
240 ]]])[[input.y:14.10-49: warning: unset value: $][$ [-Wother]
241 d: INT | INT { } INT { $][1; } INT { $<integer>2; };
242 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
243 input.y:14.18-20: warning: unused value: $][3 [-Wother]
244 d: INT | INT { } INT { $][1; } INT { $<integer>2; };
246 input.y:14.30-32: warning: unused value: $][5 [-Wother]
247 d: INT | INT { } INT { $][1; } INT { $<integer>2; };
249 input.y:15.10-37: warning: unset value: $][$ [-Wother]
250 e: INT | INT { } INT { } INT { $][1; };
251 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
252 input.y:15.18-20: warning: unused value: $][3 [-Wother]
253 e: INT | INT { } INT { } INT { $][1; };
255 input.y:15.27-29: warning: unused value: $][5 [-Wother]
256 e: INT | INT { } INT { } INT { $][1; };
258 input.y:17.10-58: warning: unset value: $][$ [-Wother]
259 g: INT | INT { $<integer>$; } INT { $<integer>$; } INT { };
260 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
261 input.y:17.10-12: warning: unused value: $][1 [-Wother]
262 g: INT | INT { $<integer>$; } INT { $<integer>$; } INT { };
264 ]]m4_ifval($2, [[[input.y:17.14-29: warning: unused value: $][2 [-Wmidrule-values]
265 g: INT | INT { $<integer>$; } INT { $<integer>$; } INT { };
267 ]]])[[input.y:17.31-33: warning: unused value: $][3 [-Wother]
268 g: INT | INT { $<integer>$; } INT { $<integer>$; } INT { };
270 ]]m4_ifval($2, [[[input.y:17.35-50: warning: unused value: $][4 [-Wmidrule-values]
271 g: INT | INT { $<integer>$; } INT { $<integer>$; } INT { };
273 ]]])[[input.y:17.52-54: warning: unused value: $][5 [-Wother]
274 g: INT | INT { $<integer>$; } INT { $<integer>$; } INT { };
276 input.y:18.10-72: warning: unset value: $][$ [-Wother]
277 h: INT | INT { $<integer>$; } INT { $<integer>$ = $<integer>2; } INT { };
278 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
279 input.y:18.10-12: warning: unused value: $][1 [-Wother]
280 h: INT | INT { $<integer>$; } INT { $<integer>$ = $<integer>2; } INT { };
282 input.y:18.31-33: warning: unused value: $][3 [-Wother]
283 h: INT | INT { $<integer>$; } INT { $<integer>$ = $<integer>2; } INT { };
285 ]]m4_ifval($2, [[[input.y:18.35-64: warning: unused value: $][4 [-Wmidrule-values]
286 h: INT | INT { $<integer>$; } INT { $<integer>$ = $<integer>2; } INT { };
287 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
288 ]]])[[input.y:18.66-68: warning: unused value: $][5 [-Wother]
289 h: INT | INT { $<integer>$; } INT { $<integer>$ = $<integer>2; } INT { };
291 ]]m4_ifval($2, [[[input.y:20.18-37: warning: unused value: $][3 [-Wmidrule-values]
292 j: INT | INT INT { $<integer>$ = 1; } { $][$ = $][1 + $][2; };
294 ]]])[[input.y:21.10-68: warning: unset value: $][$ [-Wother]
295 k: INT | INT INT { $<integer>$; } { $<integer>$ = $<integer>3; } { };
296 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
297 input.y:21.10-12: warning: unused value: $][1 [-Wother]
298 k: INT | INT INT { $<integer>$; } { $<integer>$ = $<integer>3; } { };
300 input.y:21.14-16: warning: unused value: $][2 [-Wother]
301 k: INT | INT INT { $<integer>$; } { $<integer>$ = $<integer>3; } { };
303 ]]m4_ifval($2, [[[input.y:21.35-64: warning: unused value: $][4 [-Wmidrule-values]
304 k: INT | INT INT { $<integer>$; } { $<integer>$ = $<integer>3; } { };
305 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
309 ## --------------- ##
311 ## --------------- ##
313 AT_SETUP([Unused values])
314 AT_CHECK_UNUSED_VALUES
315 AT_CHECK_UNUSED_VALUES(, [1])
319 ## ------------------------------------------ ##
320 ## Unused values before symbol declarations. ##
321 ## ------------------------------------------ ##
323 AT_SETUP([Unused values before symbol declarations])
324 AT_CHECK_UNUSED_VALUES([1])
325 AT_CHECK_UNUSED_VALUES([1], [1])
329 ## --------------------------------------------- ##
330 ## Default %printer and %destructor redeclared. ##
331 ## --------------------------------------------- ##
333 AT_SETUP([Default %printer and %destructor redeclared])
336 [[%destructor { destroy ($$); } <*> <*>
337 %printer { print ($$); } <*> <*>
339 %destructor { destroy ($$); } <*>
340 %printer { print ($$); } <*>
342 %destructor { destroy ($$); } <> <>
343 %printer { print ($$); } <> <>
345 %destructor { destroy ($$); } <>
346 %printer { print ($$); } <>
352 %destructor { destroy ($$); } <*>;
353 %printer { print ($$); } <*>;
355 %destructor { destroy ($$); } <>;
356 %printer { print ($$); } <>;
359 AT_BISON_CHECK([-fcaret input.y], [1], [],
360 [[input.y:1.13-29: error: %destructor redeclaration for <*>
361 %destructor { destroy ($$); } <*> <*>
363 input.y:1.13-29: previous declaration
364 %destructor { destroy ($$); } <*> <*>
366 input.y:2.10-24: error: %printer redeclaration for <*>
367 %printer { print ($$); } <*> <*>
369 input.y:2.10-24: previous declaration
370 %printer { print ($$); } <*> <*>
372 input.y:4.13-29: error: %destructor redeclaration for <*>
373 %destructor { destroy ($$); } <*>
375 input.y:1.13-29: previous declaration
376 %destructor { destroy ($$); } <*> <*>
378 input.y:5.10-24: error: %printer redeclaration for <*>
379 %printer { print ($$); } <*>
381 input.y:2.10-24: previous declaration
382 %printer { print ($$); } <*> <*>
384 input.y:7.13-29: error: %destructor redeclaration for <>
385 %destructor { destroy ($$); } <> <>
387 input.y:7.13-29: previous declaration
388 %destructor { destroy ($$); } <> <>
390 input.y:8.10-24: error: %printer redeclaration for <>
391 %printer { print ($$); } <> <>
393 input.y:8.10-24: previous declaration
394 %printer { print ($$); } <> <>
396 input.y:10.13-29: error: %destructor redeclaration for <>
397 %destructor { destroy ($$); } <>
399 input.y:7.13-29: previous declaration
400 %destructor { destroy ($$); } <> <>
402 input.y:11.10-24: error: %printer redeclaration for <>
403 %printer { print ($$); } <>
405 input.y:8.10-24: previous declaration
406 %printer { print ($$); } <> <>
408 input.y:17.13-29: error: %destructor redeclaration for <*>
409 %destructor { destroy ($$); } <*>;
411 input.y:4.13-29: previous declaration
412 %destructor { destroy ($$); } <*>
414 input.y:18.10-24: error: %printer redeclaration for <*>
415 %printer { print ($$); } <*>;
417 input.y:5.10-24: previous declaration
418 %printer { print ($$); } <*>
420 input.y:20.13-29: error: %destructor redeclaration for <>
421 %destructor { destroy ($$); } <>;
423 input.y:10.13-29: previous declaration
424 %destructor { destroy ($$); } <>
426 input.y:21.10-24: error: %printer redeclaration for <>
427 %printer { print ($$); } <>;
429 input.y:11.10-24: previous declaration
430 %printer { print ($$); } <>
437 ## ---------------------------------------------- ##
438 ## Per-type %printer and %destructor redeclared. ##
439 ## ---------------------------------------------- ##
441 AT_SETUP([Per-type %printer and %destructor redeclared])
444 [[%destructor { destroy ($$); } <field1> <field2>
445 %printer { print ($$); } <field1> <field2>
447 %destructor { destroy ($$); } <field1> <field1>
448 %printer { print ($$); } <field2> <field2>
454 %destructor { destroy ($$); } <field2> <field1>;
455 %printer { print ($$); } <field2> <field1>;
458 AT_BISON_CHECK([input.y], [1], [],
459 [[input.y:4.13-29: error: %destructor redeclaration for <field1>
460 input.y:1.13-29: previous declaration
461 input.y:4.13-29: error: %destructor redeclaration for <field1>
462 input.y:4.13-29: previous declaration
463 input.y:5.10-24: error: %printer redeclaration for <field2>
464 input.y:2.10-24: previous declaration
465 input.y:5.10-24: error: %printer redeclaration for <field2>
466 input.y:5.10-24: previous declaration
467 input.y:11.13-29: error: %destructor redeclaration for <field2>
468 input.y:1.13-29: previous declaration
469 input.y:11.13-29: error: %destructor redeclaration for <field1>
470 input.y:4.13-29: previous declaration
471 input.y:12.10-24: error: %printer redeclaration for <field2>
472 input.y:5.10-24: previous declaration
473 input.y:12.10-24: error: %printer redeclaration for <field1>
474 input.y:2.10-24: previous declaration
479 ## ------------------- ##
480 ## Undefined symbols. ##
481 ## ------------------- ##
483 AT_SETUP([Undefined symbols])
486 [[%printer {} foo baz
493 AT_BISON_CHECK([-fcaret input.y], [1], [],
494 [[input.y:2.16-18: error: symbol bar is used, but is not defined as a token and has no rules
497 input.y:1.17-19: warning: symbol baz is used, but is not defined as a token and has no rules [-Wother]
500 input.y:1.13-15: warning: symbol foo is used, but is not defined as a token and has no rules [-Wother]
503 input.y:3.13-15: warning: symbol qux is used, but is not defined as a token and has no rules [-Wother]
511 ## ----------------------------------------------------- ##
512 ## Unassociated types used for a printer or destructor. ##
513 ## ----------------------------------------------------- ##
515 AT_SETUP([Unassociated types used for a printer or destructor])
518 [[%token <type1> tag1
521 %printer { } <type1> <type3>
522 %destructor { } <type2> <type4>
532 AT_BISON_CHECK([input.y], [0], [],
533 [[input.y:4.22-28: warning: type <type3> is used, but is not associated to any symbol [-Wother]
534 input.y:5.25-31: warning: type <type4> is used, but is not associated to any symbol [-Wother]
540 ## --------------------------------- ##
541 ## Useless printers or destructors. ##
542 ## --------------------------------- ##
544 AT_SETUP([Useless printers or destructors])
546 # AT_TEST([INPUT], [STDERR])
547 # --------------------------
548 m4_pushdef([AT_TEST],
549 [AT_DATA([[input.y]],
552 AT_BISON_CHECK([input.y], [0], [], [$2
555 AT_TEST([[%token <type1> token1
556 %token <type2> token2
557 %token <type3> token3
558 %token <type4> token4
559 %token <type5> token51 token52
560 %token <type6> token61 token62
561 %token <type7> token7
564 %destructor {} token2
566 %destructor {} token61
571 %destructor {} <type2>
573 %destructor {} <type4>
576 %destructor {} <type6>
578 %destructor {} <type7>
582 [[input.y:16.13-19: warning: useless %printer for type <type1> [-Wother]
583 input.y:17.16-22: warning: useless %destructor for type <type2> [-Wother]]])
585 # If everybody is typed, <> is useless.
586 AT_TEST([[%type <type> exp
591 [[input.y:3.13-14: warning: useless %printer for type <> [-Wother]]])
593 # If nobody is typed, <*> is useless.
598 [[input.y:2.16-18: warning: useless %printer for type <*> [-Wother]]])
605 ## ---------------------------------------- ##
606 ## Unused values with default %destructor. ##
607 ## ---------------------------------------- ##
609 AT_SETUP([Unused values with default %destructor])
612 [[%destructor { destroy ($$); } <>
617 start: end end tagged tagged { $<tag>1; $3; } ;
622 AT_BISON_CHECK([-fcaret input.y], [0], [],
623 [[input.y:6.8-45: warning: unset value: $$ [-Wother]
624 start: end end tagged tagged { $<tag>1; $3; } ;
625 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
626 input.y:6.12-14: warning: unused value: $2 [-Wother]
627 start: end end tagged tagged { $<tag>1; $3; } ;
629 input.y:7.6-8: warning: unset value: $$ [-Wother]
635 [[%destructor { destroy ($$); } <*>
640 start: end end tagged tagged { $<tag>1; $3; } ;
645 AT_BISON_CHECK([input.y], [0], [],
646 [[input.y:6.23-28: warning: unused value: $4 [-Wother]
647 input.y:8.9-11: warning: unset value: $$ [-Wother]
653 ## ----------------------------------------- ##
654 ## Unused values with per-type %destructor. ##
655 ## ----------------------------------------- ##
657 AT_SETUP([Unused values with per-type %destructor])
660 [[%destructor { destroy ($$); } <field1>
661 %type <field1> start end
665 start: end end { $1; } ;
669 AT_BISON_CHECK([-fcaret input.y], [0], [],
670 [[input.y:6.8-22: warning: unset value: $$ [-Wother]
671 start: end end { $1; } ;
673 input.y:6.12-14: warning: unused value: $2 [-Wother]
674 start: end end { $1; } ;
676 input.y:7.6-8: warning: unset value: $$ [-Wother]
684 ## ---------------------- ##
685 ## Incompatible Aliases. ##
686 ## ---------------------- ##
688 AT_SETUP([Incompatible Aliases])
695 %destructor {bar} foo
700 %destructor {baz} "foo"
707 AT_BISON_CHECK([-fcaret input.y], [1], [],
708 [[input.y:8.7-11: error: %type redeclaration for foo
711 input.y:3.7-11: previous declaration
714 input.y:10.13-17: error: %destructor redeclaration for foo
715 %destructor {baz} "foo"
717 input.y:5.13-17: previous declaration
718 %destructor {bar} foo
720 input.y:9.10-14: error: %printer redeclaration for foo
723 input.y:4.10-14: previous declaration
726 input.y:11.1-5: error: %left redeclaration for foo
729 input.y:6.1-5: previous declaration
738 ## ----------------------- ##
739 ## Torturing the Scanner. ##
740 ## ----------------------- ##
742 # Be sure to compile and run, so that the C compiler checks what
745 AT_SETUP([Torturing the Scanner])
747 AT_BISON_OPTION_PUSHDEFS
748 AT_DATA([input.y], [])
749 AT_BISON_CHECK([input.y], [1], [],
750 [[input.y:1.1: error: syntax error, unexpected end of file
757 AT_BISON_CHECK([-fcaret input.y], [1], [],
758 [[input.y:1.1-2: error: syntax error, unexpected {...}
764 AT_DATA_GRAMMAR([input.y],
766 /* This is seen in GCC: a %{ and %} in middle of a comment. */
767 const char *foo = "So %{ and %} can be here too.";
770 /* These examples test Bison while not stressing C compilers too much.
771 Many C compilers mishandle backslash-newlines, so this part of the
772 test is inside "#if 0". The comment and string are written so that
773 the "#endif" will be seen regardless of the C compiler bugs that we
776 HP C (as of late 2002) mishandles *\[newline]\[newline]/ within a
779 The Apple Darwin compiler (as of late 2002) mishandles
780 \\[newline]' within a character constant.
785 * A comment with backslash-newlines in it. %} *\
788 /* { Close the above comment, if the C compiler mishandled it. */
791 " A string with backslash-newlines in it %{ %} \\
795 char apostrophe = '\'';
802 /* %{ and %} can be here too. */
805 /* Exercise pre-prologue dependency to %union. */
809 /* Exercise M4 quoting: '@:>@@:>@', 0. */
811 /* Also exercise %union. */
814 value ival; /* A comment to exercise an old bug. */
818 /* Exercise post-prologue dependency to %union. */
820 static YYSTYPE value_as_yystype (value val);
822 /* Exercise quotes in declarations. */
823 char quote[] = "@:>@@:>@,";
833 /* Exercise quotes in strings. */
834 %token FAKE "fake @<:@@:>@ \a\b\f\n\r\t\v\"\'\?\\\u005B\U0000005c ??!??'??(??)??-??/??<??=??> \x1\1"
837 /* Exercise M4 quoting: '@:>@@:>@', @<:@, 1. */
838 exp: '@<:@' '\1' two '$' '@' '{' oline output.or.oline.opt
840 /* Exercise quotes in braces. */
841 char tmp[] = "@<:@%c@:>@,\n";
846 two: '\x000000000000000000000000000000000000000000000000000000000000000000002';
847 oline: '@' 'o' 'l' 'i' 'n' 'e' '@' '_' '_' 'o' 'l' 'i' 'n' 'e' '_' '_';
848 output.or.oline.opt: ;|oline;;|output;;;
849 output: '#' 'o' 'u' 't' 'p' 'u' 't' ' ';
851 /* Exercise M4 quoting: '@:>@@:>@', @<:@, 2. */
854 value_as_yystype (value val)
864 static char const input[] = "@<:@\1\2$@{@oline@__@&t@oline__\
867 static size_t toknum;
868 assert (toknum < sizeof input);
869 yylval = value_as_yystype (input[toknum]);
870 return input[toknum++];
874 # Pacify Emacs'font-lock-mode: "
883 AT_BISON_OPTION_POPDEFS
885 AT_BISON_CHECK([-d -v -o input.c input.y])
886 AT_COMPILE([input.o])
888 AT_COMPILE([input], [input.o main.o])
889 AT_PARSER_CHECK([./input], 0,
896 ## ---------------------- ##
897 ## Typed symbol aliases. ##
898 ## ---------------------- ##
900 AT_SETUP([Typed symbol aliases])
902 # Bison 2.0 broke typed symbol aliases - ensure they work.
904 AT_DATA_GRAMMAR([input.y],
909 %token <val> MY_TOKEN "MY TOKEN"
916 AT_BISON_CHECK([-o input.c input.y])
925 m4_define([AT_CHECK_REQUIRE],
926 [AT_SETUP([Require $1])
927 AT_DATA_GRAMMAR([input.y],
930 empty_file: /* empty */;
932 AT_BISON_CHECK([-o input.c input.y], $2, [], ignore)
936 AT_CHECK_REQUIRE(1.0, 0)
937 AT_CHECK_REQUIRE(AT_PACKAGE_VERSION, 0)
938 ## FIXME: Some day augment this version number.
939 AT_CHECK_REQUIRE(100.0, 63)
942 ## ------------------------------------- ##
943 ## String aliases for character tokens. ##
944 ## ------------------------------------- ##
946 AT_SETUP([String aliases for character tokens])
948 # Bison once thought a character token and its alias were different
949 # symbols with the same user token number.
951 AT_DATA_GRAMMAR([input.y],
958 AT_BISON_CHECK([-o input.c input.y])
969 AT_BISON_OPTION_PUSHDEFS
970 AT_DATA_GRAMMAR([input.y],
972 %token WITHOUT_DASH "WITHOUT-DASH"
974 %token WITHOUT_PERIOD "WITHOUT.PERIOD"
980 start: with-dash without_dash with.period without_period;
981 with-dash: WITH-DASH;
982 without_dash: "WITHOUT-DASH";
983 with.period: WITH.PERIOD;
984 without_period: "WITHOUT.PERIOD";
989 AT_BISON_OPTION_POPDEFS
991 # POSIX Yacc accept periods, but not dashes.
992 AT_BISON_CHECK([--yacc -Wno-error input.y], [], [],
993 [[input.y:9.8-16: warning: POSIX Yacc forbids dashes in symbol names: WITH-DASH [-Wyacc]
994 input.y:20.8-16: warning: POSIX Yacc forbids dashes in symbol names: with-dash [-Wyacc]
997 # So warn about them.
998 AT_BISON_CHECK([-Wyacc input.y], [], [],
999 [[input.y:9.8-16: warning: POSIX Yacc forbids dashes in symbol names: WITH-DASH [-Wyacc]
1000 input.y:20.8-16: warning: POSIX Yacc forbids dashes in symbol names: with-dash [-Wyacc]
1003 # Dashes are fine for GNU Bison.
1004 AT_BISON_CHECK([-o input.c input.y])
1006 # Make sure we don't export silly token identifiers with periods or dashes.
1007 AT_COMPILE([input.o])
1010 # Periods are genuine letters, they can start identifiers.
1011 # Digits and dashes cannot.
1012 AT_DATA_GRAMMAR([input.y],
1020 AT_BISON_CHECK([-o input.c input.y], [1], [],
1021 [[input.y:10.10: error: invalid character: '-'
1022 input.y:11.10-16: error: invalid identifier: '1NV4L1D'
1023 input.y:12.10: error: invalid character: '-'
1029 ## ----------------- ##
1030 ## Numbered tokens. ##
1031 ## ----------------- ##
1033 AT_SETUP([Numbered tokens])
1035 AT_DATA_GRAMMAR([redecl.y],
1036 [[%token DECIMAL_1 11259375
1037 HEXADECIMAL_1 0xabcdef
1038 HEXADECIMAL_2 0xFEDCBA
1041 start: DECIMAL_1 HEXADECIMAL_2;
1044 AT_BISON_CHECK([redecl.y], [1], [],
1045 [[redecl.y:10.10-22: error: user token number 11259375 redeclaration for HEXADECIMAL_1
1046 redecl.y:9.8-16: previous declaration for DECIMAL_1
1047 redecl.y:12.10-18: error: user token number 16702650 redeclaration for DECIMAL_2
1048 redecl.y:11.10-22: previous declaration for HEXADECIMAL_2
1051 AT_DATA_GRAMMAR([too-large.y],
1052 [[%token TOO_LARGE_DEC 999999999999999999999
1053 TOO_LARGE_HEX 0xFFFFFFFFFFFFFFFFFFF
1055 start: TOO_LARGE_DEC TOO_LARGE_HEX
1059 AT_BISON_CHECK([too-large.y], [1], [],
1060 [[too-large.y:9.22-42: error: integer out of range: '999999999999999999999'
1061 too-large.y:10.24-44: error: integer out of range: '0xFFFFFFFFFFFFFFFFFFF'
1067 ## --------------------- ##
1068 ## Unclosed constructs. ##
1069 ## --------------------- ##
1071 AT_SETUP([Unclosed constructs])
1073 # Bison's scan-gram.l once forgot to STRING_FINISH some unclosed
1074 # constructs, so they were prepended to whatever it STRING_GROW'ed
1075 # next. It also threw them away rather than returning them to the
1076 # parser. The effect was confusing subsequent error messages.
1081 %token AB "ab" // Used to complain that "ab" was already used.
1084 %token TICK_TWELVE "'12" // Used to complain that "'12" was already used.
1090 // Used to report a syntax error because it didn't see any kind of symbol
1096 // Used to report a syntax error because it didn't see braced code.
1097 %destructor { free ($$)
1100 AT_BISON_CHECK([-fcaret -o input.c input.y], 1, [],
1101 [[input.y:1.10-2.0: error: missing '"' at end of line
1104 input.y:4.10-5.0: error: missing "'" at end of line
1107 input.y:14.11-15.0: error: missing "'" at end of line
1110 input.y:16.11-17.0: error: missing '"' at end of line
1113 input.y:19.13-20.0: error: missing '}' at end of file
1114 %destructor { free ($$)
1116 input.y:20.1: error: syntax error, unexpected end of file
1122 ## ------------------------- ##
1123 ## %start after first rule. ##
1124 ## ------------------------- ##
1126 AT_SETUP([%start after first rule])
1128 # Bison once complained that a %start after the first rule was a
1129 # redeclaration of the start symbol.
1134 start: false_start ;
1138 AT_BISON_CHECK([-o input.c input.y])
1143 ## --------------------- ##
1144 ## %prec takes a token. ##
1145 ## --------------------- ##
1147 AT_SETUP([%prec takes a token])
1149 # Bison once allowed %prec sym where sym was a nonterminal.
1153 start: PREC %prec PREC ;
1157 AT_BISON_CHECK([input.y], [1], [],
1158 [[input.y:3.1-4: error: rule given for PREC, which is a token
1164 ## ------------------------------- ##
1165 ## %prec's token must be defined. ##
1166 ## ------------------------------- ##
1168 AT_SETUP([[%prec's token must be defined]])
1170 # According to POSIX, a %prec token must be defined separately.
1172 AT_DATA([[input.y]],
1177 AT_BISON_CHECK([[input.y]], [[0]], [],
1178 [[input.y:2.8-17: warning: token for %prec is not defined: PREC [-Wother]
1184 ## -------------------------------- ##
1185 ## Reject unused %code qualifiers. ##
1186 ## -------------------------------- ##
1188 AT_SETUP([Reject unused %code qualifiers])
1190 AT_DATA([input-c.y],
1198 AT_BISON_CHECK([[input-c.y]], [[1]], [],
1199 [[input-c.y:1.7: error: %code qualifier 'q' is not used
1200 input-c.y:2.7-9: error: %code qualifier 'bad' is not used
1201 input-c.y:3.7-9: error: %code qualifier 'bad' is not used
1202 input-c.y:4.7-12: error: %code qualifier 'format' is not used
1205 AT_DATA([input-c-glr.y],
1212 AT_BISON_CHECK([[input-c-glr.y]], [[1]], [],
1213 [[input-c-glr.y:1.7: error: %code qualifier 'q' is not used
1214 input-c-glr.y:2.7-9: error: %code qualifier 'bad' is not used
1215 input-c-glr.y:3.8-10: error: %code qualifier 'bad' is not used
1218 AT_DATA([input-c++.y],
1225 AT_BISON_CHECK([[input-c++.y]], [[1]], [],
1226 [[input-c++.y:1.7: error: %code qualifier 'q' is not used
1227 input-c++.y:2.7-9: error: %code qualifier 'bad' is not used
1228 input-c++.y:3.8: error: %code qualifier 'q' is not used
1231 AT_DATA([input-c++-glr.y],
1238 AT_BISON_CHECK([[input-c++-glr.y]], [[1]], [],
1239 [[input-c++-glr.y:1.7-9: error: %code qualifier 'bad' is not used
1240 input-c++-glr.y:2.7: error: %code qualifier 'q' is not used
1241 input-c++-glr.y:3.7: error: %code qualifier 'q' is not used
1244 AT_DATA([special-char-@@.y],
1251 AT_BISON_CHECK([[special-char-@@.y]], [[1]], [],
1252 [[special-char-@@.y:1.7-9: error: %code qualifier 'bad' is not used
1253 special-char-@@.y:2.7: error: %code qualifier 'q' is not used
1254 special-char-@@.y:3.7: error: %code qualifier 'q' is not used
1257 AT_DATA([special-char-@:>@.y],
1264 AT_BISON_CHECK([[special-char-@:>@.y]], [[1]], [],
1265 [[special-char-@:>@.y:1.7-9: error: %code qualifier 'bad' is not used
1266 special-char-@:>@.y:2.7: error: %code qualifier 'q' is not used
1267 special-char-@:>@.y:3.7: error: %code qualifier 'q' is not used
1273 ## ---------------- ##
1274 ## %define errors. ##
1275 ## ---------------- ##
1277 AT_SETUP([%define errors])
1279 AT_DATA([input-redefined.y],
1280 [[%define var "value1"
1281 %define var "value1"
1282 %define var "value2"
1283 %define special1 "@:>@"
1284 %define special2 "@<:@"
1289 AT_BISON_CHECK([[input-redefined.y]], [[1]], [],
1290 [[input-redefined.y:2.9-11: error: %define variable 'var' redefined
1291 input-redefined.y:1.9-11: previous definition
1292 input-redefined.y:3.10-12: error: %define variable 'var' redefined
1293 input-redefined.y:2.9-11: previous definition
1296 AT_DATA([input-unused.y],
1297 [[%define var "value"
1302 AT_BISON_CHECK([[input-unused.y]], [[1]], [],
1303 [[input-unused.y:1.9-11: error: %define variable 'var' is not used
1309 ## ----------------------------------- ##
1310 ## %define, --define, --force-define. ##
1311 ## ----------------------------------- ##
1313 AT_SETUP([[%define, --define, --force-define]])
1316 [[m4@&t@_divert_push(0)@
1317 @output(b4_parser_file_name@)@
1318 [var-dd: ]b4_percent_define_get([[var-dd]])[
1319 var-ff: ]b4_percent_define_get([[var-ff]])[
1320 var-dfg: ]b4_percent_define_get([[var-dfg]])[
1321 var-fd: ]b4_percent_define_get([[var-fd]])
1322 m4@&t@_divert_pop(0)
1324 AT_DATA([[input.y]],
1325 [[%define var-dfg "gram"
1329 AT_BISON_CHECK([[-Dvar-dd=cmd-d1 -Dvar-dd=cmd-d2 \
1330 -Fvar-ff=cmd-f1 -Fvar-ff=cmd-f2 \
1331 -Dvar-dfg=cmd-d -Fvar-dfg=cmd-f \
1332 -Fvar-fd=cmd-f -Dvar-fd=cmd-d \
1333 --skeleton ./skel.c input.y]])
1334 AT_CHECK([[cat input.tab.c]], [[0]],
1341 AT_DATA([[input-dg.y]],
1342 [[%define var "gram"
1346 AT_BISON_CHECK([[-Dvar=cmd-d input-dg.y]], [[1]], [],
1347 [[input-dg.y:1.9-11: error: %define variable 'var' redefined
1348 <command line>:2: previous definition
1351 AT_DATA([[input-dg.y]],
1352 [[%define var "gram"
1356 AT_BISON_CHECK([[-fcaret -Dvar=cmd-d input-dg.y]], [[1]], [],
1357 [[input-dg.y:1.9-11: error: %define variable 'var' redefined
1360 <command line>:3: previous definition
1363 AT_DATA([[input-unused.y]],
1367 AT_BISON_CHECK([[-Dunused-d -Funused-f input-unused.y]], [[1]], [],
1368 [[<command line>:2: error: %define variable 'unused-d' is not used
1369 <command line>:3: error: %define variable 'unused-f' is not used
1374 ## --------------------------- ##
1375 ## %define Boolean variables. ##
1376 ## --------------------------- ##
1378 AT_SETUP([["%define" Boolean variables]])
1382 %define public "maybe"
1383 %define parser_class_name "Input"
1388 AT_BISON_CHECK([[Input.y]], [1], [],
1389 [[Input.y:2.9-14: error: invalid value for %define Boolean variable 'public'
1394 ## ------------------------ ##
1395 ## %define enum variables. ##
1396 ## ------------------------ ##
1398 AT_SETUP([["%define" enum variables]])
1400 # Check errors from the front-end, and the back-end. Since the
1401 # front-end quits before calling the back-end, these tests cannot be
1405 AT_DATA([[input.y]],
1406 [[%define lr.default-reduction bogus
1410 AT_BISON_CHECK([[-fcaret input.y]], [[1]], [[]],
1411 [[input.y:1.9-28: error: invalid value for %define variable 'lr.default-reduction': 'bogus'
1412 %define lr.default-reduction bogus
1413 ^^^^^^^^^^^^^^^^^^^^
1414 input.y:1.9-28: accepted value: 'most'
1415 input.y:1.9-28: accepted value: 'consistent'
1416 input.y:1.9-28: accepted value: 'accepting'
1420 AT_DATA([[input.y]],
1421 [[%define api.push-pull neither
1425 AT_BISON_CHECK([[-fcaret input.y]], [[1]], [[]],
1426 [[input.y:1.9-21: error: invalid value for %define variable 'api.push-pull': 'neither'
1427 %define api.push-pull neither
1429 input.y:1.9-21: accepted value: 'pull'
1430 input.y:1.9-21: accepted value: 'push'
1431 input.y:1.9-21: accepted value: 'both'
1436 ## -------------------------------- ##
1437 ## %define backward compatibility. ##
1438 ## -------------------------------- ##
1440 AT_SETUP([["%define" backward compatibility]])
1442 # The error messages tell us whether the variables are properly updated.
1443 AT_DATA([[input.y]],
1444 [[%define api.push_pull both
1445 %define lr.keep_unreachable_states maybe
1446 %define namespace "foo"
1447 %define api.namespace "foo"
1452 AT_BISON_CHECK([[-fcaret input.y]], [1], [],
1453 [[input.y:1.9-21: warning: deprecated directive, use '%define api.push-pull both' [-Wdeprecated]
1454 %define api.push_pull both
1456 input.y:2.9-34: warning: deprecated directive, use '%define lr.keep-unreachable-state maybe' [-Wdeprecated]
1457 %define lr.keep_unreachable_states maybe
1458 ^^^^^^^^^^^^^^^^^^^^^^^^^^
1459 input.y:3.9-17: warning: deprecated directive, use '%define api.namespace foo' [-Wdeprecated]
1460 %define namespace "foo"
1462 input.y:4.9-21: error: %define variable 'api.namespace' redefined
1463 %define api.namespace "foo"
1465 input.y:3.9-17: previous definition
1466 %define namespace "foo"
1468 input.y:5.9-15: warning: deprecated directive, use '%define api.value.type variant' [-Wdeprecated]
1475 ## ------------------------- ##
1476 ## Unused %define api.pure. ##
1477 ## ------------------------- ##
1479 AT_SETUP([[Unused %define api.pure]])
1481 # AT_CHECK_API_PURE(DECLS, VALUE)
1482 # -------------------------------
1483 # Make sure Bison reports that `%define api.pure VALUE' is unused when DECLS
1485 m4_define([AT_CHECK_API_PURE],
1487 AT_DATA([[input.y]],
1488 [[%define api.pure ]$2[
1494 AT_BISON_CHECK([[input.y]], [[1]], [],
1495 [[input.y:1.9-16: error: %define variable 'api.pure' is not used
1499 AT_CHECK_API_PURE([[%language "c++"]], [[]])
1500 AT_CHECK_API_PURE([[%language "c++"]], [[false]])
1501 AT_CHECK_API_PURE([[%language "c++" %glr-parser]], [[""]])
1502 AT_CHECK_API_PURE([[%language "c++" %glr-parser]], [[false]])
1503 AT_CHECK_API_PURE([[%language "java"]], [[true]])
1504 AT_CHECK_API_PURE([[%language "java"]], [[false]])
1508 ## -------------------------------- ##
1509 ## C++ namespace reference errors. ##
1510 ## -------------------------------- ##
1512 AT_SETUP([[C++ namespace reference errors]])
1514 # AT_CHECK_NAMESPACE_ERROR(NAMESPACE-DECL, ERROR, [ERROR], ...)
1515 # -------------------------------------------------------------
1516 # Make sure Bison reports all ERROR's for %define namespace "NAMESPACE-DECL".
1517 m4_define([AT_CHECK_NAMESPACE_ERROR],
1519 AT_DATA([[input.y]],
1522 %define api.namespace "]$1["
1527 AT_BISON_CHECK([[input.y]], [1], [],
1528 [m4_foreach([b4_arg], m4_dquote(m4_shift($@)),
1529 [[input.y:3.9-21: error: ]b4_arg[
1533 AT_CHECK_NAMESPACE_ERROR([[]],
1534 [[namespace reference is empty]])
1535 AT_CHECK_NAMESPACE_ERROR([[ @tb@@tb@ @tb@ @tb@]],
1536 [[namespace reference is empty]])
1537 AT_CHECK_NAMESPACE_ERROR([[foo::::bar]],
1538 [[namespace reference has consecutive "::"]])
1539 AT_CHECK_NAMESPACE_ERROR([[foo:: @tb@::bar]],
1540 [[namespace reference has consecutive "::"]])
1541 AT_CHECK_NAMESPACE_ERROR([[::::bar]],
1542 [[namespace reference has consecutive "::"]])
1543 AT_CHECK_NAMESPACE_ERROR([[:: ::bar]],
1544 [[namespace reference has consecutive "::"]])
1545 AT_CHECK_NAMESPACE_ERROR([[foo::bar::@tb@::]],
1546 [[namespace reference has consecutive "::"]],
1547 [[namespace reference has a trailing "::"]])
1548 AT_CHECK_NAMESPACE_ERROR([[foo::bar::]],
1549 [[namespace reference has a trailing "::"]])
1550 AT_CHECK_NAMESPACE_ERROR([[foo::bar:: @tb@]],
1551 [[namespace reference has a trailing "::"]])
1552 AT_CHECK_NAMESPACE_ERROR([[::]],
1553 [[namespace reference has a trailing "::"]])
1557 ## ------------------------ ##
1558 ## Bad character literals. ##
1559 ## ------------------------ ##
1561 # Bison used to accept character literals that were empty or contained
1562 # too many characters.
1564 # FIXME: AT_DATA or some variant of AT_DATA may eventually permit
1565 # the final newline to be omitted. See the threads starting at
1566 # <http://lists.gnu.org/archive/html/bison-patches/2009-07/msg00019.html>.
1568 AT_SETUP([[Bad character literals]])
1575 AT_CHECK([[$PERL -e "print 'start: \'';" >> empty.y || exit 77]])
1577 AT_BISON_CHECK([-fcaret empty.y], [1], [],
1578 [[empty.y:2.8-9: warning: empty character literal [-Wother]
1581 empty.y:3.8-4.0: error: missing "'" at end of line
1584 empty.y:3.8-4.0: warning: empty character literal [-Wother]
1587 empty.y:4.8: error: missing "'" at end of file
1590 empty.y:4.8: warning: empty character literal [-Wother]
1600 AT_CHECK([[$PERL -e "print 'start: \'ab';" >> two.y || exit 77]])
1602 AT_BISON_CHECK([two.y], [1], [],
1603 [[two.y:2.8-11: warning: extra characters in character literal [-Wother]
1604 two.y:3.8-4.0: error: missing "'" at end of line
1605 two.y:3.8-4.0: warning: extra characters in character literal [-Wother]
1606 two.y:4.8-10: error: missing "'" at end of file
1607 two.y:4.8-10: warning: extra characters in character literal [-Wother]
1615 AT_CHECK([[$PERL -e "print 'start: \'abc';" >> three.y || exit 77]])
1617 AT_BISON_CHECK([three.y], [1], [],
1618 [[three.y:2.8-12: warning: extra characters in character literal [-Wother]
1619 three.y:3.8-4.0: error: missing "'" at end of line
1620 three.y:3.8-4.0: warning: extra characters in character literal [-Wother]
1621 three.y:4.8-11: error: missing "'" at end of file
1622 three.y:4.8-11: warning: extra characters in character literal [-Wother]
1627 ## ------------------------- ##
1628 ## Bad escapes in literals. ##
1629 ## ------------------------- ##
1631 AT_SETUP([[Bad escapes in literals]])
1635 start: '\777' '\0' '\xfff' '\x0'
1636 '\uffff' '\u0000' '\Uffffffff' '\U00000000'
1640 # It is not easy to create special characters, we cannot even trust tr.
1641 # Beside we cannot even expect "echo '\0'" to output two characters
1642 # (well three with \n): at least Bash 3.2 converts the two-character
1643 # sequence "\0" into a single NUL character.
1644 AT_CHECK([[$PERL -e 'print "start: \"\\\t\\\f\\\0\\\1\" ;";' >> input.y \
1647 AT_BISON_CHECK([input.y], [1], [],
1648 [[input.y:2.9-12: error: invalid number after \-escape: 777
1649 input.y:2.8-13: warning: empty character literal [-Wother]
1650 input.y:2.16-17: error: invalid number after \-escape: 0
1651 input.y:2.15-18: warning: empty character literal [-Wother]
1652 input.y:2.21-25: error: invalid number after \-escape: xfff
1653 input.y:2.20-26: warning: empty character literal [-Wother]
1654 input.y:2.29-31: error: invalid number after \-escape: x0
1655 input.y:2.28-32: warning: empty character literal [-Wother]
1656 input.y:3.9-14: error: invalid number after \-escape: uffff
1657 input.y:3.8-15: warning: empty character literal [-Wother]
1658 input.y:3.18-23: error: invalid number after \-escape: u0000
1659 input.y:3.17-24: warning: empty character literal [-Wother]
1660 input.y:3.27-36: error: invalid number after \-escape: Uffffffff
1661 input.y:3.26-37: warning: empty character literal [-Wother]
1662 input.y:3.40-49: error: invalid number after \-escape: U00000000
1663 input.y:3.39-50: warning: empty character literal [-Wother]
1664 input.y:4.9-10: error: invalid character after \-escape: ' '
1665 input.y:4.8-11: warning: empty character literal [-Wother]
1666 input.y:4.14-15: error: invalid character after \-escape: A
1667 input.y:4.13-16: warning: empty character literal [-Wother]
1668 input.y:5.9-16: error: invalid character after \-escape: \t
1669 input.y:5.17: error: invalid character after \-escape: \f
1670 input.y:5.18: error: invalid character after \-escape: \0
1671 input.y:5.19: error: invalid character after \-escape: \001
1676 ## ------------------------- ##
1677 ## LAC: Errors for %define. ##
1678 ## ------------------------- ##
1680 AT_SETUP([[LAC: Errors for %define]])
1682 AT_DATA([[input.y]],
1687 # parse.lac.* options are useless if LAC isn't actually activated.
1688 AT_BISON_CHECK([[-Dparse.lac.es-capacity-initial=1 input.y]],
1690 [[<command line>:2: error: %define variable 'parse.lac.es-capacity-initial' is not used
1692 AT_BISON_CHECK([[-Dparse.lac.memory-trace=full input.y]],
1694 [[<command line>:2: error: %define variable 'parse.lac.memory-trace' is not used
1699 ## --------------------------------------------- ##
1700 ## -Werror is not affected by -Wnone and -Wall. ##
1701 ## --------------------------------------------- ##
1703 AT_SETUP([[-Werror is not affected by -Wnone and -Wall]])
1705 AT_DATA([[input.y]],
1710 # -Werror is not enabled by -Wall or equivalent.
1711 AT_BISON_CHECK([[-Wall input.y]], [[0]], [[]],
1712 [[input.y:2.1-7: warning: POSIX Yacc forbids dashes in symbol names: foo-bar [-Wyacc]
1714 AT_BISON_CHECK([[-W input.y]], [[0]], [[]],
1715 [[input.y:2.1-7: warning: POSIX Yacc forbids dashes in symbol names: foo-bar [-Wyacc]
1717 AT_BISON_CHECK([[-Wno-none input.y]], [[0]], [[]],
1718 [[input.y:2.1-7: warning: POSIX Yacc forbids dashes in symbol names: foo-bar [-Wyacc]
1721 # -Werror is not disabled by -Wnone or equivalent.
1722 AT_BISON_CHECK([[-Werror,none,yacc input.y]], [[1]], [[]], [[stderr]])
1723 AT_CHECK([[sed 's/^.*bison:/bison:/' stderr]], [[0]],
1724 [[input.y:2.1-7: error: POSIX Yacc forbids dashes in symbol names: foo-bar [-Werror=yacc]
1727 AT_BISON_CHECK([[-Werror,no-all,yacc input.y]], [[1]], [[]], [[experr]])
1732 ## ------------------------------------------------------ ##
1733 ## %name-prefix and %define api.prefix are incompatible. ##
1734 ## ------------------------------------------------------ ##
1736 AT_SETUP([[%name-prefix and api.prefix are incompatible]])
1738 # AT_TEST(DIRECTIVES, OPTIONS, ERROR-LOCATION)
1739 # --------------------------------------------
1740 m4_pushdef([AT_TEST],
1741 [AT_DATA([[input.y]],
1746 AT_BISON_CHECK([[$2 input.y]], [[1]], [[]],
1747 [[$3: error: '%name-prefix' and '%define api.prefix' cannot be used together
1751 AT_TEST([%define api.prefix foo %name-prefix "bar"], [], [input.y:1.9-18])
1752 AT_TEST([], [-Dapi.prefix=foo -p bar], [<command line>:2])
1753 AT_TEST([%name-prefix "bar"], [-Dapi.prefix=foo], [<command line>:2])
1754 AT_TEST([%define api.prefix foo], [-p bar], [input.y:1.9-18])
1756 m4_popdef([AT_TEST])
1761 ## -------------- ##
1763 ## -------------- ##
1765 AT_SETUP([[Stray $ or @]])
1767 # Give %printer and %destructor "<*> exp TOK" instead of "<*>" to
1768 # check that the warnings are reported once, not three times.
1770 AT_DATA_GRAMMAR([[input.y]],
1772 %token <TYPE> TOK TOK2
1773 %destructor { $%; @%; } <*> exp TOK;
1774 %initial-action { $%; @%; };
1775 %printer { $%; @%; } <*> exp TOK;
1776 %{ $ @ %} // Should not warn.
1778 exp: TOK { $%; @%; $$ = $1; };
1780 $ @ // Should not warn.
1783 AT_BISON_CHECK([[-Wall input.y]], 0, [],
1784 [[input.y:11.19: warning: stray '$' [-Wother]
1785 input.y:11.23: warning: stray '@' [-Wother]
1786 input.y:12.19: warning: stray '$' [-Wother]
1787 input.y:12.23: warning: stray '@' [-Wother]
1788 input.y:13.19: warning: stray '$' [-Wother]
1789 input.y:13.23: warning: stray '@' [-Wother]
1790 input.y:16.19: warning: stray '$' [-Wother]
1791 input.y:16.23: warning: stray '@' [-Wother]
1798 ## ---------------- ##
1799 ## Code injection. ##
1800 ## ---------------- ##
1803 AT_SETUP([[Code injection]])
1805 m4_pattern_allow([^m4_errprintn$])
1809 # Try to have MACRO be run by bison.
1810 m4_pushdef([AT_TEST],
1811 [AT_DATA([[input.y]],
1812 [[%type <$1(DEAD %type)> exp
1813 %token <$1(DEAD %token)> a
1818 $<$1(DEAD %initial-action)>$
1823 $<$1(DEAD %printer)>$
1831 $1(DEAD %parse-param)
1839 $<$1(DEAD action 1)>$
1840 $<$1(DEAD action 2)>1
1841 $<$1(DEAD action 3)>name
1842 $<$1(DEAD action 4)>0
1847 # FIXME: Provide a means to iterate over all the skeletons.
1848 AT_BISON_CHECK([[-d input.y]])
1849 AT_BISON_CHECK([[-d -S glr.c input.y]])
1850 AT_BISON_CHECK([[-d -S lalr1.cc input.y]])
1851 AT_BISON_CHECK([[-d -S glr.cc input.y]])
1852 AT_BISON_CHECK([[ -S lalr1.java input.y]])
1855 AT_TEST([m4_errprintn])
1856 AT_TEST([@:>@m4_errprintn])
1858 m4_popdef([AT_TEST])
1862 ##----------------------- ##
1863 ## Deprecated directives. ##
1864 ## ---------------------- ##
1866 AT_SETUP([[Deprecated directives]])
1868 AT_KEYWORDS([[deprec]])
1870 AT_DATA_GRAMMAR([[input.y]],
1875 %file-prefix = "foo"
1893 AT_BISON_CHECK([[input.y]], [[0]], [[]],
1894 [[input.y:10.1-13: warning: deprecated directive: '%default_prec', use '%default-prec' [-Wdeprecated]
1895 input.y:11.1-14: warning: deprecated directive: '%error_verbose', use '%define parse.error verbose' [-Wdeprecated]
1896 input.y:12.1-10: warning: deprecated directive: '%expect_rr', use '%expect-rr' [-Wdeprecated]
1897 input.y:13.1-14: warning: deprecated directive: '%file-prefix =', use '%file-prefix' [-Wdeprecated]
1898 input.y:14.1-15.2: warning: deprecated directive: '%file-prefix\n =', use '%file-prefix' [-Wdeprecated]
1899 input.y:17.1-19: warning: deprecated directive: '%fixed-output_files', use '%fixed-output-files' [-Wdeprecated]
1900 input.y:18.1-19: warning: deprecated directive: '%fixed_output-files', use '%fixed-output-files' [-Wdeprecated]
1901 input.y:20.1-13: warning: deprecated directive: '%name-prefix=', use '%name-prefix' [-Wdeprecated]
1902 input.y:21.1-16: warning: deprecated directive: '%no-default_prec', use '%no-default-prec' [-Wdeprecated]
1903 input.y:22.1-16: warning: deprecated directive: '%no_default-prec', use '%no-default-prec' [-Wdeprecated]
1904 input.y:23.1-9: warning: deprecated directive: '%no_lines', use '%no-lines' [-Wdeprecated]
1905 input.y:24.1-9: warning: deprecated directive: '%output =', use '%output' [-Wdeprecated]
1906 input.y:25.1-12: warning: deprecated directive: '%pure_parser', use '%pure-parser' [-Wdeprecated]
1907 input.y:26.1-12: warning: deprecated directive: '%token_table', use '%token-table' [-Wdeprecated]
1912 ## ---------------------------- ##
1913 ## Unput's effect on locations. ##
1914 ## ---------------------------- ##
1915 dnl When the scanner detects a deprecated construct, it unputs the correct
1916 dnl version, but it should *not* have any impact on the scanner cursor. If it
1917 dnl does, the locations of directives on the same line become erroneous.
1919 AT_SETUP([[Unput's effect on locations]])
1921 AT_KEYWORDS([[deprec]])
1923 AT_DATA_GRAMMAR([[input.y]],
1926 %expect_rr 42 %expect_rr 42
1928 %error_verbose %error_verbose
1933 AT_BISON_CHECK([[input.y]], [[1]], [[]],
1934 [[input.y:11.1-10: warning: deprecated directive: '%expect_rr', use '%expect-rr' [-Wdeprecated]
1935 input.y:11.15-24: warning: deprecated directive: '%expect_rr', use '%expect-rr' [-Wdeprecated]
1936 input.y:12.15-24: warning: deprecated directive: '%expect_rr', use '%expect-rr' [-Wdeprecated]
1937 input.y:13.1-14: warning: deprecated directive: '%error_verbose', use '%define parse.error verbose' [-Wdeprecated]
1938 input.y:13.16-29: warning: deprecated directive: '%error_verbose', use '%define parse.error verbose' [-Wdeprecated]
1939 input.y:13.11-21: error: %define variable 'parse.error' redefined
1940 input.y:13-6: previous definition
1941 input.y:14.16-29: warning: deprecated directive: '%error_verbose', use '%define parse.error verbose' [-Wdeprecated]
1942 input.y:14.11-21: error: %define variable 'parse.error' redefined
1943 input.y:13.11-21: previous definition
1948 ##--------------------------- ##
1949 ## Non-deprecated directives. ##
1950 ## -------------------------- ##
1952 AT_SETUP([[Non-deprecated directives]])
1954 AT_KEYWORDS([[deprec]])
1956 AT_DATA_GRAMMAR([[input.y]],
1974 AT_BISON_CHECK([[input.y]], [[0]], [[]],
1975 [[input.y: warning: %expect-rr applies only to GLR parsers [-Wother]