1 # Checking the Bison scanner. -*- Autotest -*-
2 # Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2, or (at your option)
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 AT_BANNER([[Input Processing.]])
21 # Mostly test that we are robust to mistakes.
28 AT_SETUP([Invalid \$n and @n])
36 AT_CHECK([bison input.y], [1], [],
37 [[input.y:2.13-14: integer out of range: `$1'
38 input.y:3.13-14: integer out of range: `@1'
48 AT_SETUP([Type Clashes])
55 exp: foo { $$; } foo { $2; } foo
61 AT_CHECK([bison input.y], [1], [],
62 [[input.y:5.12-13: $$ for the midrule at $2 of `exp' has no declared type
63 input.y:5.24-25: $2 of `exp' has no declared type
64 input.y:5.6-32: warning: type clash on default action: <bar> != <>
65 input.y:6.6-8: warning: type clash on default action: <bar> != <>
66 input.y:7.5: warning: empty rule for typed nonterminal, and no action
72 # _AT_UNUSED_VALUES_DECLARATIONS()
73 # --------------------------------------------
74 # Generate the token, type, and destructor
75 # declarations for the unused values tests.
77 m4_define([_AT_UNUSED_VALUES_DECLARATIONS],
78 [[[%token <integer> INT;
79 %type <integer> a b c d e f g h i j k l;
80 %destructor { destroy ($$); } INT a b c d e f g h i j k l;]]])
83 # AT_CHECK_UNUSED_VALUES(DECLARATIONS_AFTER)
84 # --------------------------------------------
85 # Generate a grammar to test unused values,
86 # compile it, run it. If DECLARATIONS_AFTER
87 # is set, then the token, type, and destructor
88 # declarations are generated after the rules
91 m4_define([AT_CHECK_UNUSED_VALUES],
96 ], [_AT_UNUSED_VALUES_DECLARATIONS
99 'a' a { $]2[ } | 'b' b { $]2[ } | 'c' c { $]2[ } | 'd' d { $]2[ } | 'e' e { $]2[ }
100 | 'f' f { $]2[ } | 'g' g { $]2[ } | 'h' h { $]2[ } | 'i' i { $]2[ } | 'j' j { $]2[ }
101 | 'k' k { $]2[ } | 'l' l { $]2[ }
104 a: INT | INT { } INT { } INT { };
105 b: INT | /* empty */;
106 c: INT | INT { $]1[ } INT { $<integer>2 } INT { $<integer>4 };
107 d: INT | INT { } INT { $]1[ } INT { $<integer>2 };
108 e: INT | INT { } INT { } INT { $]1[ };
109 f: INT | INT { } INT { } INT { $]$[ = $]1[ + $]3[ + $]5[; };
110 g: INT | INT { $<integer>$; } INT { $<integer>$; } INT { };
111 h: INT | INT { $<integer>$; } INT { $<integer>$ = $<integer>2; } INT { };
112 i: INT | INT INT { } { $]$[ = $]1[ + $]2[; };
113 j: INT | INT INT { $<integer>$ = 1; } { $]$[ = $]1[ + $]2[; };
114 k: INT | INT INT { $<integer>$; } { $<integer>$ = $<integer>3; } { };
115 l: INT | INT { $<integer>$ = $<integer>1; } INT { $<integer>$ = $<integer>2 + $<integer>3; } INT { $<integer>$ = $<integer>4 + $<integer>5; };]]m4_ifval($1, [
116 _AT_UNUSED_VALUES_DECLARATIONS])
119 AT_CHECK([bison input.y], [0], [],
120 [[input.y:11.10-32: warning: unset value: $]$[
121 input.y:11.10-32: warning: unused value: $]1[
122 input.y:11.10-32: warning: unused value: $]3[
123 input.y:11.10-32: warning: unused value: $]5[
124 input.y:12.9: warning: empty rule for typed nonterminal, and no action
125 input.y:13.14-19: warning: unset value: $$
126 input.y:13.25-39: warning: unset value: $$
127 input.y:13.10-59: warning: unset value: $]$[
128 input.y:13.10-59: warning: unused value: $]3[
129 input.y:13.10-59: warning: unused value: $]5[
130 input.y:14.14-16: warning: unset value: $$
131 input.y:14.10-47: warning: unset value: $]$[
132 input.y:14.10-47: warning: unused value: $]3[
133 input.y:14.10-47: warning: unused value: $]5[
134 input.y:15.10-36: warning: unset value: $]$[
135 input.y:15.10-36: warning: unused value: $]3[
136 input.y:15.10-36: warning: unused value: $]5[
137 input.y:17.10-58: warning: unset value: $]$[
138 input.y:17.10-58: warning: unused value: $]1[
139 input.y:17.10-58: warning: unused value: $]2[
140 input.y:17.10-58: warning: unused value: $]3[
141 input.y:17.10-58: warning: unused value: $]4[
142 input.y:17.10-58: warning: unused value: $]5[
143 input.y:18.10-72: warning: unset value: $]$[
144 input.y:18.10-72: warning: unused value: $]1[
145 input.y:18.10-72: warning: unused value: $]3[
146 input.y:18.10-72: warning: unused value: $]4[
147 input.y:18.10-72: warning: unused value: $]5[
148 input.y:20.10-55: warning: unused value: $]3[
149 input.y:21.10-68: warning: unset value: $]$[
150 input.y:21.10-68: warning: unused value: $]1[
151 input.y:21.10-68: warning: unused value: $]2[
152 input.y:21.10-68: warning: unused value: $]4[
156 ## --------------- ##
158 ## --------------- ##
160 AT_SETUP([Unused values])
161 AT_CHECK_UNUSED_VALUES
165 ## ------------------------------------------ ##
166 ## Unused values before symbol declarations. ##
167 ## ------------------------------------------ ##
169 AT_SETUP([Unused values before symbol declarations])
170 AT_CHECK_UNUSED_VALUES([1])
174 ## --------------------------------------------- ##
175 ## Default %printer and %destructor redeclared. ##
176 ## --------------------------------------------- ##
178 AT_SETUP([Default %printer and %destructor redeclared])
181 [[%destructor { destroy ($$); } <*> <*>
182 %printer { destroy ($$); } <*> <*>
184 %destructor { destroy ($$); } <*>
185 %printer { destroy ($$); } <*>
187 %destructor { destroy ($$); } <!> <!>
188 %printer { destroy ($$); } <!> <!>
190 %destructor { destroy ($$); } <!>
191 %printer { destroy ($$); } <!>
197 %destructor { destroy ($$); } <*>;
198 %printer { destroy ($$); } <*>;
200 %destructor { destroy ($$); } <!>;
201 %printer { destroy ($$); } <!>;
204 AT_CHECK([bison input.y], [1], [],
205 [[input.y:1.13-29: redeclaration for default tagged %destructor
206 input.y:1.13-29: previous declaration
207 input.y:2.10-26: redeclaration for default tagged %printer
208 input.y:2.10-26: previous declaration
209 input.y:4.13-29: redeclaration for default tagged %destructor
210 input.y:1.13-29: previous declaration
211 input.y:5.10-26: redeclaration for default tagged %printer
212 input.y:2.10-26: previous declaration
213 input.y:7.13-29: redeclaration for default tagless %destructor
214 input.y:7.13-29: previous declaration
215 input.y:8.10-26: redeclaration for default tagless %printer
216 input.y:8.10-26: previous declaration
217 input.y:10.13-29: redeclaration for default tagless %destructor
218 input.y:7.13-29: previous declaration
219 input.y:11.10-26: redeclaration for default tagless %printer
220 input.y:8.10-26: previous declaration
221 input.y:17.13-29: redeclaration for default tagged %destructor
222 input.y:4.13-29: previous declaration
223 input.y:18.10-26: redeclaration for default tagged %printer
224 input.y:5.10-26: previous declaration
225 input.y:20.13-29: redeclaration for default tagless %destructor
226 input.y:10.13-29: previous declaration
227 input.y:21.10-26: redeclaration for default tagless %printer
228 input.y:11.10-26: previous declaration
234 ## ---------------------------------------------- ##
235 ## Per-type %printer and %destructor redeclared. ##
236 ## ---------------------------------------------- ##
238 AT_SETUP([Per-type %printer and %destructor redeclared])
241 [[%destructor { destroy ($$); } <field1> <field2>
242 %printer { destroy ($$); } <field1> <field2>
244 %destructor { destroy ($$); } <field1> <field1>
245 %printer { destroy ($$); } <field2> <field2>
251 %destructor { destroy ($$); } <field2> <field1>;
252 %printer { destroy ($$); } <field2> <field1>;
255 AT_CHECK([bison input.y], [1], [],
256 [[input.y:4.13-29: %destructor redeclaration for <field1>
257 input.y:1.13-29: previous declaration
258 input.y:4.13-29: %destructor redeclaration for <field1>
259 input.y:4.13-29: previous declaration
260 input.y:5.10-26: %printer redeclaration for <field2>
261 input.y:2.10-26: previous declaration
262 input.y:5.10-26: %printer redeclaration for <field2>
263 input.y:5.10-26: previous declaration
264 input.y:11.13-29: %destructor redeclaration for <field1>
265 input.y:4.13-29: previous declaration
266 input.y:11.13-29: %destructor redeclaration for <field2>
267 input.y:1.13-29: previous declaration
268 input.y:12.10-26: %printer redeclaration for <field1>
269 input.y:2.10-26: previous declaration
270 input.y:12.10-26: %printer redeclaration for <field2>
271 input.y:5.10-26: previous declaration
277 ## ---------------------------------------- ##
278 ## Unused values with default %destructor. ##
279 ## ---------------------------------------- ##
281 AT_SETUP([Unused values with default %destructor])
284 [[%destructor { destroy ($$); } <!>
289 start: end end tagged tagged { $<tag>1; $3; } ;
294 AT_CHECK([bison input.y], [0], [],
295 [[input.y:6.8-45: warning: unset value: $$
296 input.y:6.8-45: warning: unused value: $2
297 input.y:7.6-8: warning: unset value: $$
301 [[%destructor { destroy ($$); } <*>
306 start: end end tagged tagged { $<tag>1; $3; } ;
311 AT_CHECK([bison input.y], [0], [],
312 [[input.y:6.8-45: warning: unused value: $4
313 input.y:8.9-11: warning: unset value: $$
319 ## ----------------------------------------- ##
320 ## Unused values with per-type %destructor. ##
321 ## ----------------------------------------- ##
323 AT_SETUP([Unused values with per-type %destructor])
326 [[%destructor { destroy ($$); } <field1>
327 %type <field1> start end
331 start: end end { $1; } ;
335 AT_CHECK([bison input.y], [0], [],
336 [[input.y:6.8-22: warning: unset value: $$
337 input.y:6.8-22: warning: unused value: $2
338 input.y:7.6-8: warning: unset value: $$
344 ## ---------------------- ##
345 ## Incompatible Aliases. ##
346 ## ---------------------- ##
348 AT_SETUP([Incompatible Aliases])
355 %destructor {bar} foo
360 %destructor {baz} "foo"
367 AT_CHECK([bison input.y], [1], [],
368 [[input.y:8.7-11: %type redeclaration for foo
369 input.y:3.7-11: previous declaration
370 input.y:10.13-17: %destructor redeclaration for foo
371 input.y:5.13-17: previous declaration
372 input.y:9.10-14: %printer redeclaration for foo
373 input.y:4.10-14: previous declaration
374 input.y:11.1-5: %left redeclaration for foo
375 input.y:6.1-5: previous declaration
382 ## ----------------------- ##
383 ## Torturing the Scanner. ##
384 ## ----------------------- ##
386 # Be sure to compile and run, so that the C compiler checks what
389 AT_SETUP([Torturing the Scanner])
392 AT_DATA([input.y], [])
393 AT_CHECK([bison input.y], [1], [],
394 [[input.y:1.1: syntax error, unexpected end of file
401 AT_CHECK([bison input.y], [1], [],
402 [[input.y:1.1-2: syntax error, unexpected {...}
406 AT_DATA_GRAMMAR([input.y],
408 /* This is seen in GCC: a %{ and %} in middle of a comment. */
409 const char *foo = "So %{ and %} can be here too.";
412 /* These examples test Bison while not stressing C compilers too much.
413 Many C compilers mishandle backslash-newlines, so this part of the
414 test is inside "#if 0". The comment and string are written so that
415 the "#endif" will be seen regardless of the C compiler bugs that we
418 HP C (as of late 2002) mishandles *\[newline]\[newline]/ within a
421 The Apple Darwin compiler (as of late 2002) mishandles
422 \\[newline]' within a character constant.
427 * A comment with backslash-newlines in it. %} *\
430 /* { Close the above comment, if the C compiler mishandled it. */
433 " A string with backslash-newlines in it %{ %} \\
437 char apostrophe = '\'';
443 /* %{ and %} can be here too. */
446 /* Exercise pre-prologue dependency to %union. */
450 /* Exercise M4 quoting: '@:>@@:>@', 0. */
452 /* Also exercise %union. */
455 value ival; /* A comment to exercise an old bug. */
459 /* Exercise post-prologue dependency to %union. */
461 static YYSTYPE value_as_yystype (value val);
463 /* Exercise quotes in declarations. */
464 char quote[] = "@:>@@:>@,";
468 static void yyerror (const char *s);
469 static int yylex (void);
474 /* Exercise quotes in strings. */
475 %token FAKE "fake @<:@@:>@ \a\b\f\n\r\t\v\"\'\?\\\u005B\U0000005c ??!??'??(??)??-??/??<??=??> \x1\1"
478 /* Exercise M4 quoting: '@:>@@:>@', @<:@, 1. */
479 exp: '@<:@' '\1' two '$' '@' '{' oline output.or.oline.opt
481 /* Exercise quotes in braces. */
482 char tmp[] = "@<:@%c@:>@,\n";
487 two: '\x000000000000000000000000000000000000000000000000000000000000000000002';
488 oline: '@' 'o' 'l' 'i' 'n' 'e' '@' '_' '_' 'o' 'l' 'i' 'n' 'e' '_' '_';
489 output.or.oline.opt: ;|oline;;|output;;;
490 output: '#' 'o' 'u' 't' 'p' 'u' 't' ' ';
492 /* Exercise M4 quoting: '@:>@@:>@', @<:@, 2. */
495 value_as_yystype (value val)
505 static char const input[] = "@<:@\1\2$@{@oline@__@&t@oline__\
508 static size_t toknum;
509 if (! (toknum < sizeof input))
511 yylval = value_as_yystype (input[toknum]);
512 return input[toknum++];
516 yyerror (const char *msg)
518 fprintf (stderr, "%s\n", msg);
522 # Pacify Emacs'font-lock-mode: "
537 AT_CHECK([bison -d -v -o input.c input.y])
538 AT_COMPILE([input.o], [-c input.c])
539 AT_COMPILE([main.o], [-c main.c])
540 AT_COMPILE([input], [input.o main.o])
541 AT_PARSER_CHECK([./input], 0,
548 ## ---------------------- ##
549 ## Typed symbol aliases. ##
550 ## ---------------------- ##
552 AT_SETUP([Typed symbol aliases])
554 # Bison 2.0 broke typed symbol aliases - ensure they work.
556 AT_DATA_GRAMMAR([input.y],
561 %token <val> MY_TOKEN "MY TOKEN"
568 AT_CHECK([bison -o input.c input.y])
577 m4_define([AT_CHECK_REQUIRE],
578 [AT_SETUP([Require $1])
579 AT_DATA_GRAMMAR([input.y],
584 AT_CHECK([bison -o input.c input.y], $2, [], ignore)
588 AT_CHECK_REQUIRE(1.0, 0)
589 AT_CHECK_REQUIRE(AT_PACKAGE_VERSION, 0)
590 ## FIXME: Some day augment this version number.
591 AT_CHECK_REQUIRE(100.0, 63)
594 ## ------------------------------------- ##
595 ## String aliases for character tokens. ##
596 ## ------------------------------------- ##
598 AT_SETUP([String aliases for character tokens])
600 # Bison once thought a character token and its alias were different symbols
601 # with the same user token number.
603 AT_DATA_GRAMMAR([input.y],
610 AT_CHECK([bison -o input.c input.y])
615 ## --------------------- ##
616 ## Unclosed constructs. ##
617 ## --------------------- ##
619 AT_SETUP([Unclosed constructs])
621 # Bison's scan-gram.l once forgot to STRING_FINISH some unclosed constructs, so
622 # they were prepended to whatever it STRING_GROW'ed next. It also threw them
623 # away rather than returning them to the parser. The effect was confusing
624 # subsequent error messages.
629 %token AB "ab" // Used to complain that "ab" was already used.
632 %token TICK_TWELVE "'12" // Used to complain that "'12" was already used.
638 // Used to report a syntax error because it didn't see any kind of symbol
644 // Used to report a syntax error because it didn't see braced code.
645 %destructor { free ($$)
648 AT_CHECK([bison -o input.c input.y], 1, [],
649 [[input.y:1.10-2.0: missing `"' at end of line
650 input.y:4.10-5.0: missing `'' at end of line
651 input.y:14.11-15.0: missing `'' at end of line
652 input.y:16.11-17.0: missing `"' at end of line
653 input.y:19.13-20.0: missing `}' at end of file
654 input.y:20.1: syntax error, unexpected end of file
660 ## ------------------------- ##
661 ## %start after first rule. ##
662 ## ------------------------- ##
664 AT_SETUP([%start after first rule])
666 # Bison once complained that a %start after the first rule was a redeclaration
667 # of the start symbol.
676 AT_CHECK([bison -o input.c input.y])