]> git.saurik.com Git - bison.git/blame_incremental - tests/input.at
tests: please C90 compilers
[bison.git] / tests / input.at
... / ...
CommitLineData
1# Checking the Bison scanner. -*- Autotest -*-
2
3# Copyright (C) 2002-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
18AT_BANNER([[Input Processing.]])
19
20# Mostly test that we are robust to mistakes.
21
22
23## ---------------- ##
24## Invalid inputs. ##
25## ---------------- ##
26
27AT_SETUP([Invalid inputs])
28
29AT_DATA([input.y],
30[[\000\001\002\377?
31%%
32?
33default: 'a' }
34%&
35%a-does-not-exist
36%-
37%{
38]])
39AT_CHECK([[$PERL -pi -e 's/\\(\d{3})/chr(oct($1))/ge' input.y || exit 77]])
40
41AT_BISON_CHECK([input.y], [1], [],
42[[input.y:1.1-2: error: invalid characters: '\0\001\002\377?'
43input.y:3.1: error: invalid character: '?'
44input.y:4.14: error: invalid character: '}'
45input.y:5.1: error: invalid character: '%'
46input.y:5.2: error: invalid character: '&'
47input.y:6.1-17: error: invalid directive: '%a-does-not-exist'
48input.y:7.1: error: invalid character: '%'
49input.y:7.2: error: invalid character: '-'
50input.y:8.1-9.0: error: missing '%}' at end of file
51input.y:8.1-9.0: error: syntax error, unexpected %{...%}
52]])
53
54AT_CLEANUP
55
56
57AT_SETUP([Invalid inputs with {}])
58
59# We used to SEGV here. See
60# http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html
61
62AT_DATA([input.y],
63[[
64%destructor
65%initial-action
66%lex-param
67%parse-param
68%printer
69%union
70]])
71
72AT_BISON_CHECK([input.y], [1], [],
73[[input.y:3.1-15: error: syntax error, unexpected %initial-action, expecting {...}
74]])
75
76AT_CLEANUP
77
78
79
80## ------------ ##
81## Invalid $n. ##
82## ------------ ##
83
84AT_SETUP([Invalid $n and @n])
85
86AT_DATA([input.y],
87[[%%
88exp: { $$ = $1 ; };
89exp: { @$ = @1 ; };
90]])
91
92AT_BISON_CHECK([-fcaret input.y], [1], [],
93[[input.y:2.13-14: error: integer out of range: '$1'
94 exp: { $$ = $1 ; };
95 ^^
96input.y:3.13-14: error: integer out of range: '@1'
97 exp: { @$ = @1 ; };
98 ^^
99]])
100
101AT_CLEANUP
102
103
104## -------------- ##
105## Type Clashes. ##
106## -------------- ##
107
108AT_SETUP([Type Clashes])
109
110AT_DATA([input.y],
111[[%union { int bar; }
112%token foo
113%type <bar> exp
114%%
115exp: foo { $$; } foo { $2; } foo
116 | foo
117 | /* empty. */
118 ;
119]])
120
121AT_BISON_CHECK([-fcaret input.y], [1], [],
122[[input.y:5.12-13: error: $$ for the midrule at $2 of 'exp' has no declared type
123 exp: foo { $$; } foo { $2; } foo
124 ^^
125input.y:5.24-25: error: $2 of 'exp' has no declared type
126 exp: foo { $$; } foo { $2; } foo
127 ^^
128input.y:5.6-32: warning: type clash on default action: <bar> != <> [-Wother]
129 exp: foo { $$; } foo { $2; } foo
130 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
131input.y:6.6-8: warning: type clash on default action: <bar> != <> [-Wother]
132 | foo
133 ^^^
134input.y:7.5: warning: empty rule for typed nonterminal, and no action [-Wother]
135 | /* empty. */
136 ^
137]])
138
139AT_CLEANUP
140
141
142# _AT_UNUSED_VALUES_DECLARATIONS()
143# --------------------------------
144# Generate the token, type, and destructor
145# declarations for the unused values tests.
146m4_define([_AT_UNUSED_VALUES_DECLARATIONS],
147[[[%token <integer> INT;
148%type <integer> a b c d e f g h i j k l;
149%destructor { destroy ($$); } INT a b c d e f g h i j k l;]]])
150
151
152# AT_CHECK_UNUSED_VALUES(DECLARATIONS_AFTER, CHECK_MIDRULE_VALUES)
153# ----------------------------------------------------------------
154# Generate a grammar to test unused values, compile it, run it. If
155# DECLARATIONS_AFTER is set, then the token, type, and destructor
156# declarations are generated after the rules rather than before. If
157# CHECK_MIDRULE_VALUES is set, then --warnings=midrule-values is set.
158m4_define([AT_CHECK_UNUSED_VALUES],
159[AT_DATA([input.y],
160m4_ifval($1, [
161
162
163], [_AT_UNUSED_VALUES_DECLARATIONS
164])[[%%
165start:
166 'a' a { $]2[; } | 'b' b { $]2[; } | 'c' c { $]2[; } | 'd' d { $]2[; }
167| 'e' e { $]2[; } | 'f' f { $]2[; } | 'g' g { $]2[; } | 'h' h { $]2[; }
168| 'i' i { $]2[; } | 'j' j { $]2[; } | 'k' k { $]2[; } | 'l' l { $]2[; }
169;
170
171a: INT | INT { } INT { } INT { };
172b: INT | /* empty */;
173c: INT | INT { $]1[; } INT { $<integer>2; } INT { $<integer>4; };
174d: INT | INT { } INT { $]1[; } INT { $<integer>2; };
175e: INT | INT { } INT { } INT { $]1[; };
176f: INT | INT { } INT { } INT { $]$[ = $]1[ + $]3[ + $]5[; };
177g: INT | INT { $<integer>$; } INT { $<integer>$; } INT { };
178h: INT | INT { $<integer>$; } INT { $<integer>$ = $<integer>2; } INT { };
179i: INT | INT INT { } { $]$[ = $]1[ + $]2[; };
180j: INT | INT INT { $<integer>$ = 1; } { $]$[ = $]1[ + $]2[; };
181k: INT | INT INT { $<integer>$; } { $<integer>$ = $<integer>3; } { };
182l: INT | INT { $<integer>$ = $<integer>1; } INT { $<integer>$ = $<integer>2 + $<integer>3; } INT { $<integer>$ = $<integer>4 + $<integer>5; };]]m4_ifval($1, [
183_AT_UNUSED_VALUES_DECLARATIONS])
184)
185
186AT_BISON_CHECK(m4_ifval($2, [--warnings=midrule-values ])[-fcaret input.y],
187 [0], [],
188[[input.y:11.10-32: warning: unset value: $][$ [-Wother]
189 a: INT | INT { } INT { } INT { };
190 ^^^^^^^^^^^^^^^^^^^^^^^
191input.y:11.10-12: warning: unused value: $][1 [-Wother]
192 a: INT | INT { } INT { } INT { };
193 ^^^
194input.y:11.18-20: warning: unused value: $][3 [-Wother]
195 a: INT | INT { } INT { } INT { };
196 ^^^
197input.y:11.26-28: warning: unused value: $][5 [-Wother]
198 a: INT | INT { } INT { } INT { };
199 ^^^
200input.y:12.9: warning: empty rule for typed nonterminal, and no action [-Wother]
201 b: INT | /* empty */;
202 ^
203]]m4_ifval($2, [[[input.y:13.14-20: warning: unset value: $][$ [-Wmidrule-values]
204 c: INT | INT { $][1; } INT { $<integer>2; } INT { $<integer>4; };
205 ^^^^^^^
206input.y:13.26-41: warning: unset value: $][$ [-Wmidrule-values]
207 c: INT | INT { $][1; } INT { $<integer>2; } INT { $<integer>4; };
208 ^^^^^^^^^^^^^^^^
209]]])[[input.y:13.10-62: warning: unset value: $][$ [-Wother]
210 c: INT | INT { $][1; } INT { $<integer>2; } INT { $<integer>4; };
211 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
212input.y:13.22-24: warning: unused value: $][3 [-Wother]
213 c: INT | INT { $][1; } INT { $<integer>2; } INT { $<integer>4; };
214 ^^^
215input.y:13.43-45: warning: unused value: $][5 [-Wother]
216 c: INT | INT { $][1; } INT { $<integer>2; } INT { $<integer>4; };
217 ^^^
218]]m4_ifval($2, [[[input.y:14.14-16: warning: unset value: $][$ [-Wmidrule-values]
219 d: INT | INT { } INT { $][1; } INT { $<integer>2; };
220 ^^^
221]]])[[input.y:14.10-49: warning: unset value: $][$ [-Wother]
222 d: INT | INT { } INT { $][1; } INT { $<integer>2; };
223 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
224input.y:14.18-20: warning: unused value: $][3 [-Wother]
225 d: INT | INT { } INT { $][1; } INT { $<integer>2; };
226 ^^^
227input.y:14.30-32: warning: unused value: $][5 [-Wother]
228 d: INT | INT { } INT { $][1; } INT { $<integer>2; };
229 ^^^
230input.y:15.10-37: warning: unset value: $][$ [-Wother]
231 e: INT | INT { } INT { } INT { $][1; };
232 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
233input.y:15.18-20: warning: unused value: $][3 [-Wother]
234 e: INT | INT { } INT { } INT { $][1; };
235 ^^^
236input.y:15.27-29: warning: unused value: $][5 [-Wother]
237 e: INT | INT { } INT { } INT { $][1; };
238 ^^^
239input.y:17.10-58: warning: unset value: $][$ [-Wother]
240 g: INT | INT { $<integer>$; } INT { $<integer>$; } INT { };
241 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
242input.y:17.10-12: warning: unused value: $][1 [-Wother]
243 g: INT | INT { $<integer>$; } INT { $<integer>$; } INT { };
244 ^^^
245]]m4_ifval($2, [[[input.y:17.14-29: warning: unused value: $][2 [-Wmidrule-values]
246 g: INT | INT { $<integer>$; } INT { $<integer>$; } INT { };
247 ^^^^^^^^^^^^^^^^
248]]])[[input.y:17.31-33: warning: unused value: $][3 [-Wother]
249 g: INT | INT { $<integer>$; } INT { $<integer>$; } INT { };
250 ^^^
251]]m4_ifval($2, [[[input.y:17.35-50: warning: unused value: $][4 [-Wmidrule-values]
252 g: INT | INT { $<integer>$; } INT { $<integer>$; } INT { };
253 ^^^^^^^^^^^^^^^^
254]]])[[input.y:17.52-54: warning: unused value: $][5 [-Wother]
255 g: INT | INT { $<integer>$; } INT { $<integer>$; } INT { };
256 ^^^
257input.y:18.10-72: warning: unset value: $][$ [-Wother]
258 h: INT | INT { $<integer>$; } INT { $<integer>$ = $<integer>2; } INT { };
259 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
260input.y:18.10-12: warning: unused value: $][1 [-Wother]
261 h: INT | INT { $<integer>$; } INT { $<integer>$ = $<integer>2; } INT { };
262 ^^^
263input.y:18.31-33: warning: unused value: $][3 [-Wother]
264 h: INT | INT { $<integer>$; } INT { $<integer>$ = $<integer>2; } INT { };
265 ^^^
266]]m4_ifval($2, [[[input.y:18.35-64: warning: unused value: $][4 [-Wmidrule-values]
267 h: INT | INT { $<integer>$; } INT { $<integer>$ = $<integer>2; } INT { };
268 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
269]]])[[input.y:18.66-68: warning: unused value: $][5 [-Wother]
270 h: INT | INT { $<integer>$; } INT { $<integer>$ = $<integer>2; } INT { };
271 ^^^
272]]m4_ifval($2, [[[input.y:20.18-37: warning: unused value: $][3 [-Wmidrule-values]
273 j: INT | INT INT { $<integer>$ = 1; } { $][$ = $][1 + $][2; };
274 ^^^^^^^^^^^^^^^^^^^^
275]]])[[input.y:21.10-68: warning: unset value: $][$ [-Wother]
276 k: INT | INT INT { $<integer>$; } { $<integer>$ = $<integer>3; } { };
277 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
278input.y:21.10-12: warning: unused value: $][1 [-Wother]
279 k: INT | INT INT { $<integer>$; } { $<integer>$ = $<integer>3; } { };
280 ^^^
281input.y:21.14-16: warning: unused value: $][2 [-Wother]
282 k: INT | INT INT { $<integer>$; } { $<integer>$ = $<integer>3; } { };
283 ^^^
284]]m4_ifval($2, [[[input.y:21.35-64: warning: unused value: $][4 [-Wmidrule-values]
285 k: INT | INT INT { $<integer>$; } { $<integer>$ = $<integer>3; } { };
286 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
287]]]))
288])
289
290## --------------- ##
291## Unused values. ##
292## --------------- ##
293
294AT_SETUP([Unused values])
295AT_CHECK_UNUSED_VALUES
296AT_CHECK_UNUSED_VALUES(, [1])
297AT_CLEANUP
298
299
300## ------------------------------------------ ##
301## Unused values before symbol declarations. ##
302## ------------------------------------------ ##
303
304AT_SETUP([Unused values before symbol declarations])
305AT_CHECK_UNUSED_VALUES([1])
306AT_CHECK_UNUSED_VALUES([1], [1])
307AT_CLEANUP
308
309
310## --------------------------------------------- ##
311## Default %printer and %destructor redeclared. ##
312## --------------------------------------------- ##
313
314AT_SETUP([Default %printer and %destructor redeclared])
315
316AT_DATA([[input.y]],
317[[%destructor { destroy ($$); } <*> <*>
318%printer { print ($$); } <*> <*>
319
320%destructor { destroy ($$); } <*>
321%printer { print ($$); } <*>
322
323%destructor { destroy ($$); } <> <>
324%printer { print ($$); } <> <>
325
326%destructor { destroy ($$); } <>
327%printer { print ($$); } <>
328
329%%
330
331start: ;
332
333%destructor { destroy ($$); } <*>;
334%printer { print ($$); } <*>;
335
336%destructor { destroy ($$); } <>;
337%printer { print ($$); } <>;
338]])
339
340AT_BISON_CHECK([-fcaret input.y], [1], [],
341[[input.y:1.13-29: error: %destructor redeclaration for <*>
342 %destructor { destroy ($$); } <*> <*>
343 ^^^^^^^^^^^^^^^^^
344input.y:1.13-29: previous declaration
345 %destructor { destroy ($$); } <*> <*>
346 ^^^^^^^^^^^^^^^^^
347input.y:2.10-24: error: %printer redeclaration for <*>
348 %printer { print ($$); } <*> <*>
349 ^^^^^^^^^^^^^^^
350input.y:2.10-24: previous declaration
351 %printer { print ($$); } <*> <*>
352 ^^^^^^^^^^^^^^^
353input.y:4.13-29: error: %destructor redeclaration for <*>
354 %destructor { destroy ($$); } <*>
355 ^^^^^^^^^^^^^^^^^
356input.y:1.13-29: previous declaration
357 %destructor { destroy ($$); } <*> <*>
358 ^^^^^^^^^^^^^^^^^
359input.y:5.10-24: error: %printer redeclaration for <*>
360 %printer { print ($$); } <*>
361 ^^^^^^^^^^^^^^^
362input.y:2.10-24: previous declaration
363 %printer { print ($$); } <*> <*>
364 ^^^^^^^^^^^^^^^
365input.y:7.13-29: error: %destructor redeclaration for <>
366 %destructor { destroy ($$); } <> <>
367 ^^^^^^^^^^^^^^^^^
368input.y:7.13-29: previous declaration
369 %destructor { destroy ($$); } <> <>
370 ^^^^^^^^^^^^^^^^^
371input.y:8.10-24: error: %printer redeclaration for <>
372 %printer { print ($$); } <> <>
373 ^^^^^^^^^^^^^^^
374input.y:8.10-24: previous declaration
375 %printer { print ($$); } <> <>
376 ^^^^^^^^^^^^^^^
377input.y:10.13-29: error: %destructor redeclaration for <>
378 %destructor { destroy ($$); } <>
379 ^^^^^^^^^^^^^^^^^
380input.y:7.13-29: previous declaration
381 %destructor { destroy ($$); } <> <>
382 ^^^^^^^^^^^^^^^^^
383input.y:11.10-24: error: %printer redeclaration for <>
384 %printer { print ($$); } <>
385 ^^^^^^^^^^^^^^^
386input.y:8.10-24: previous declaration
387 %printer { print ($$); } <> <>
388 ^^^^^^^^^^^^^^^
389input.y:17.13-29: error: %destructor redeclaration for <*>
390 %destructor { destroy ($$); } <*>;
391 ^^^^^^^^^^^^^^^^^
392input.y:4.13-29: previous declaration
393 %destructor { destroy ($$); } <*>
394 ^^^^^^^^^^^^^^^^^
395input.y:18.10-24: error: %printer redeclaration for <*>
396 %printer { print ($$); } <*>;
397 ^^^^^^^^^^^^^^^
398input.y:5.10-24: previous declaration
399 %printer { print ($$); } <*>
400 ^^^^^^^^^^^^^^^
401input.y:20.13-29: error: %destructor redeclaration for <>
402 %destructor { destroy ($$); } <>;
403 ^^^^^^^^^^^^^^^^^
404input.y:10.13-29: previous declaration
405 %destructor { destroy ($$); } <>
406 ^^^^^^^^^^^^^^^^^
407input.y:21.10-24: error: %printer redeclaration for <>
408 %printer { print ($$); } <>;
409 ^^^^^^^^^^^^^^^
410input.y:11.10-24: previous declaration
411 %printer { print ($$); } <>
412 ^^^^^^^^^^^^^^^
413]])
414
415AT_CLEANUP
416
417
418## ---------------------------------------------- ##
419## Per-type %printer and %destructor redeclared. ##
420## ---------------------------------------------- ##
421
422AT_SETUP([Per-type %printer and %destructor redeclared])
423
424AT_DATA([[input.y]],
425[[%destructor { destroy ($$); } <field1> <field2>
426%printer { print ($$); } <field1> <field2>
427
428%destructor { destroy ($$); } <field1> <field1>
429%printer { print ($$); } <field2> <field2>
430
431%%
432
433start: ;
434
435%destructor { destroy ($$); } <field2> <field1>;
436%printer { print ($$); } <field2> <field1>;
437]])
438
439AT_BISON_CHECK([input.y], [1], [],
440[[input.y:4.13-29: error: %destructor redeclaration for <field1>
441input.y:1.13-29: previous declaration
442input.y:4.13-29: error: %destructor redeclaration for <field1>
443input.y:4.13-29: previous declaration
444input.y:5.10-24: error: %printer redeclaration for <field2>
445input.y:2.10-24: previous declaration
446input.y:5.10-24: error: %printer redeclaration for <field2>
447input.y:5.10-24: previous declaration
448input.y:11.13-29: error: %destructor redeclaration for <field2>
449input.y:1.13-29: previous declaration
450input.y:11.13-29: error: %destructor redeclaration for <field1>
451input.y:4.13-29: previous declaration
452input.y:12.10-24: error: %printer redeclaration for <field2>
453input.y:5.10-24: previous declaration
454input.y:12.10-24: error: %printer redeclaration for <field1>
455input.y:2.10-24: previous declaration
456]])
457
458AT_CLEANUP
459
460## ------------------- ##
461## Undefined symbols. ##
462## ------------------- ##
463
464AT_SETUP([Undefined symbols])
465
466AT_DATA([[input.y]],
467[[%printer {} foo baz
468%destructor {} bar
469%type <foo> qux
470%%
471exp: bar;
472]])
473
474AT_BISON_CHECK([-fcaret input.y], [1], [],
475[[input.y:2.16-18: error: symbol bar is used, but is not defined as a token and has no rules
476 %destructor {} bar
477 ^^^
478input.y:1.17-19: warning: symbol baz is used, but is not defined as a token and has no rules [-Wother]
479 %printer {} foo baz
480 ^^^
481input.y:1.13-15: warning: symbol foo is used, but is not defined as a token and has no rules [-Wother]
482 %printer {} foo baz
483 ^^^
484input.y:3.13-15: warning: symbol qux is used, but is not defined as a token and has no rules [-Wother]
485 %type <foo> qux
486 ^^^
487]])
488
489AT_CLEANUP
490
491
492## ----------------------------------------------------- ##
493## Unassociated types used for a printer or destructor. ##
494## ----------------------------------------------------- ##
495
496AT_SETUP([Unassociated types used for a printer or destructor])
497
498AT_DATA([[input.y]],
499[[%token <type1> tag1
500%type <type2> tag2
501
502%printer { } <type1> <type3>
503%destructor { } <type2> <type4>
504
505%%
506
507exp: tag1 { $1; }
508 | tag2 { $1; }
509
510tag2: "a" { $$; }
511]])
512
513AT_BISON_CHECK([input.y], [0], [],
514[[input.y:4.22-28: warning: type <type3> is used, but is not associated to any symbol [-Wother]
515input.y:5.25-31: warning: type <type4> is used, but is not associated to any symbol [-Wother]
516]])
517
518AT_CLEANUP
519
520
521## --------------------------------- ##
522## Useless printers or destructors. ##
523## --------------------------------- ##
524
525AT_SETUP([Useless printers or destructors])
526
527# AT_TEST([INPUT], [STDERR])
528# --------------------------
529m4_pushdef([AT_TEST],
530[AT_DATA([[input.y]],
531[$1
532])
533AT_BISON_CHECK([input.y], [0], [], [$2
534])])
535
536AT_TEST([[%token <type1> token1
537%token <type2> token2
538%token <type3> token3
539%token <type4> token4
540%token <type5> token51 token52
541%token <type6> token61 token62
542%token <type7> token7
543
544%printer {} token1
545%destructor {} token2
546%printer {} token51
547%destructor {} token61
548
549%printer {} token7
550
551%printer {} <type1>
552%destructor {} <type2>
553%printer {} <type3>
554%destructor {} <type4>
555
556%printer {} <type5>
557%destructor {} <type6>
558
559%destructor {} <type7>
560
561%%
562exp: "a";]],
563[[input.y:16.13-19: warning: useless %printer for type <type1> [-Wother]
564input.y:17.16-22: warning: useless %destructor for type <type2> [-Wother]]])
565
566# If everybody is typed, <> is useless.
567AT_TEST([[%type <type> exp
568%token <type> a
569%printer {} <> <*>
570%%
571exp: a;]],
572[[input.y:3.13-14: warning: useless %printer for type <> [-Wother]]])
573
574# If nobody is typed, <*> is useless.
575AT_TEST([[%token a
576%printer {} <> <*>
577%%
578exp: a;]],
579[[input.y:2.16-18: warning: useless %printer for type <*> [-Wother]]])
580
581m4_popdef([AT_TEST])
582
583AT_CLEANUP
584
585
586## ---------------------------------------- ##
587## Unused values with default %destructor. ##
588## ---------------------------------------- ##
589
590AT_SETUP([Unused values with default %destructor])
591
592AT_DATA([[input.y]],
593[[%destructor { destroy ($$); } <>
594%type <tag> tagged
595
596%%
597
598start: end end tagged tagged { $<tag>1; $3; } ;
599end: { } ;
600tagged: { } ;
601]])
602
603AT_BISON_CHECK([-fcaret input.y], [0], [],
604[[input.y:6.8-45: warning: unset value: $$ [-Wother]
605 start: end end tagged tagged { $<tag>1; $3; } ;
606 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
607input.y:6.12-14: warning: unused value: $2 [-Wother]
608 start: end end tagged tagged { $<tag>1; $3; } ;
609 ^^^
610input.y:7.6-8: warning: unset value: $$ [-Wother]
611 end: { } ;
612 ^^^
613]])
614
615AT_DATA([[input.y]],
616[[%destructor { destroy ($$); } <*>
617%type <tag> tagged
618
619%%
620
621start: end end tagged tagged { $<tag>1; $3; } ;
622end: { } ;
623tagged: { } ;
624]])
625
626AT_BISON_CHECK([input.y], [0], [],
627[[input.y:6.23-28: warning: unused value: $4 [-Wother]
628input.y:8.9-11: warning: unset value: $$ [-Wother]
629]])
630
631AT_CLEANUP
632
633
634## ----------------------------------------- ##
635## Unused values with per-type %destructor. ##
636## ----------------------------------------- ##
637
638AT_SETUP([Unused values with per-type %destructor])
639
640AT_DATA([[input.y]],
641[[%destructor { destroy ($$); } <field1>
642%type <field1> start end
643
644%%
645
646start: end end { $1; } ;
647end: { } ;
648]])
649
650AT_BISON_CHECK([-fcaret input.y], [0], [],
651[[input.y:6.8-22: warning: unset value: $$ [-Wother]
652 start: end end { $1; } ;
653 ^^^^^^^^^^^^^^^
654input.y:6.12-14: warning: unused value: $2 [-Wother]
655 start: end end { $1; } ;
656 ^^^
657input.y:7.6-8: warning: unset value: $$ [-Wother]
658 end: { } ;
659 ^^^
660]])
661
662AT_CLEANUP
663
664
665## ---------------------- ##
666## Incompatible Aliases. ##
667## ---------------------- ##
668
669AT_SETUP([Incompatible Aliases])
670
671AT_DATA([input.y],
672[[%token foo "foo"
673
674%type <bar> foo
675%printer {bar} foo
676%destructor {bar} foo
677%left foo
678
679%type <baz> "foo"
680%printer {baz} "foo"
681%destructor {baz} "foo"
682%left "foo"
683
684%%
685exp: foo;
686]])
687
688AT_BISON_CHECK([-fcaret input.y], [1], [],
689[[input.y:8.7-11: error: %type redeclaration for foo
690 %type <baz> "foo"
691 ^^^^^
692input.y:3.7-11: previous declaration
693 %type <bar> foo
694 ^^^^^
695input.y:10.13-17: error: %destructor redeclaration for foo
696 %destructor {baz} "foo"
697 ^^^^^
698input.y:5.13-17: previous declaration
699 %destructor {bar} foo
700 ^^^^^
701input.y:9.10-14: error: %printer redeclaration for foo
702 %printer {baz} "foo"
703 ^^^^^
704input.y:4.10-14: previous declaration
705 %printer {bar} foo
706 ^^^^^
707input.y:11.1-5: error: %left redeclaration for foo
708 %left "foo"
709 ^^^^^
710input.y:6.1-5: previous declaration
711 %left foo
712 ^^^^^
713]])
714
715AT_CLEANUP
716
717
718
719## ----------------------- ##
720## Torturing the Scanner. ##
721## ----------------------- ##
722
723# Be sure to compile and run, so that the C compiler checks what
724# we do.
725
726AT_SETUP([Torturing the Scanner])
727
728AT_BISON_OPTION_PUSHDEFS
729AT_DATA([input.y], [])
730AT_BISON_CHECK([input.y], [1], [],
731[[input.y:1.1: error: syntax error, unexpected end of file
732]])
733
734
735AT_DATA([input.y],
736[{}
737])
738AT_BISON_CHECK([-fcaret input.y], [1], [],
739[[input.y:1.1-2: error: syntax error, unexpected {...}
740 {}
741 ^^
742]])
743
744
745AT_DATA_GRAMMAR([input.y],
746[[%{
747/* This is seen in GCC: a %{ and %} in middle of a comment. */
748const char *foo = "So %{ and %} can be here too.";
749
750#if 0
751/* These examples test Bison while not stressing C compilers too much.
752 Many C compilers mishandle backslash-newlines, so this part of the
753 test is inside "#if 0". The comment and string are written so that
754 the "#endif" will be seen regardless of the C compiler bugs that we
755 know about, namely:
756
757 HP C (as of late 2002) mishandles *\[newline]\[newline]/ within a
758 comment.
759
760 The Apple Darwin compiler (as of late 2002) mishandles
761 \\[newline]' within a character constant.
762
763 */
764
765/\
766* A comment with backslash-newlines in it. %} *\
767\
768/
769/* { Close the above comment, if the C compiler mishandled it. */
770
771char str[] = "\\
772" A string with backslash-newlines in it %{ %} \\
773\
774"";
775
776char apostrophe = '\'';
777#endif
778
779#include <stdio.h>
780#include <stdlib.h>
781#include <assert.h>
782%}
783/* %{ and %} can be here too. */
784
785%{
786/* Exercise pre-prologue dependency to %union. */
787typedef int value;
788%}
789
790/* Exercise M4 quoting: '@:>@@:>@', 0. */
791
792/* Also exercise %union. */
793%union
794{
795 value ival; /* A comment to exercise an old bug. */
796};
797
798
799/* Exercise post-prologue dependency to %union. */
800%{
801static YYSTYPE value_as_yystype (value val);
802
803/* Exercise quotes in declarations. */
804char quote[] = "@:>@@:>@,";
805%}
806
807%{
808]AT_YYERROR_DECLARE[
809]AT_YYLEX_DECLARE[
810%}
811
812%type <ival> '@<:@'
813
814/* Exercise quotes in strings. */
815%token FAKE "fake @<:@@:>@ \a\b\f\n\r\t\v\"\'\?\\\u005B\U0000005c ??!??'??(??)??-??/??<??=??> \x1\1"
816
817%%
818/* Exercise M4 quoting: '@:>@@:>@', @<:@, 1. */
819exp: '@<:@' '\1' two '$' '@' '{' oline output.or.oline.opt
820 {
821 /* Exercise quotes in braces. */
822 char tmp[] = "@<:@%c@:>@,\n";
823 printf (tmp, $1);
824 }
825;
826
827two: '\x000000000000000000000000000000000000000000000000000000000000000000002';
828oline: '@' 'o' 'l' 'i' 'n' 'e' '@' '_' '_' 'o' 'l' 'i' 'n' 'e' '_' '_';
829output.or.oline.opt: ;|oline;;|output;;;
830output: '#' 'o' 'u' 't' 'p' 'u' 't' ' ';
831%%
832/* Exercise M4 quoting: '@:>@@:>@', @<:@, 2. */
833
834static YYSTYPE
835value_as_yystype (value val)
836{
837 YYSTYPE res;
838 res.ival = val;
839 return res;
840}
841]AT_YYERROR_DEFINE[
842static int
843yylex (void)
844{
845 static char const input[] = "@<:@\1\2$@{@oline@__@&t@oline__\
846#output "; /* "
847 */
848 static size_t toknum;
849 assert (toknum < sizeof input);
850 yylval = value_as_yystype (input[toknum]);
851 return input[toknum++];
852}
853]])
854
855# Pacify Emacs'font-lock-mode: "
856
857AT_DATA([main.c],
858[[typedef int value;
859#include "input.h"
860
861int yyparse (void);
862]AT_MAIN_DEFINE[
863]])
864AT_BISON_OPTION_POPDEFS
865
866AT_BISON_CHECK([-d -v -o input.c input.y])
867AT_COMPILE([input.o])
868AT_COMPILE([main.o])
869AT_COMPILE([input], [input.o main.o])
870AT_PARSER_CHECK([./input], 0,
871[[[@<:@],
872]])
873
874AT_CLEANUP
875
876
877## ---------------------- ##
878## Typed symbol aliases. ##
879## ---------------------- ##
880
881AT_SETUP([Typed symbol aliases])
882
883# Bison 2.0 broke typed symbol aliases - ensure they work.
884
885AT_DATA_GRAMMAR([input.y],
886[[%union
887{
888 int val;
889};
890%token <val> MY_TOKEN "MY TOKEN"
891%type <val> exp
892%%
893exp: "MY TOKEN";
894%%
895]])
896
897AT_BISON_CHECK([-o input.c input.y])
898
899AT_CLEANUP
900
901
902## --------- ##
903## Require. ##
904## --------- ##
905
906m4_define([AT_CHECK_REQUIRE],
907[AT_SETUP([Require $1])
908AT_DATA_GRAMMAR([input.y],
909[[%require "$1";
910%%
911empty_file: /* empty */;
912]])
913AT_BISON_CHECK([-o input.c input.y], $2, [], ignore)
914AT_CLEANUP
915])
916
917AT_CHECK_REQUIRE(1.0, 0)
918AT_CHECK_REQUIRE(AT_PACKAGE_VERSION, 0)
919## FIXME: Some day augment this version number.
920AT_CHECK_REQUIRE(100.0, 63)
921
922
923## ------------------------------------- ##
924## String aliases for character tokens. ##
925## ------------------------------------- ##
926
927AT_SETUP([String aliases for character tokens])
928
929# Bison once thought a character token and its alias were different
930# symbols with the same user token number.
931
932AT_DATA_GRAMMAR([input.y],
933[[%token 'a' "a"
934%%
935start: 'a';
936%%
937]])
938
939AT_BISON_CHECK([-o input.c input.y])
940
941AT_CLEANUP
942
943
944## -------------- ##
945## Symbol names. ##
946## -------------- ##
947
948AT_SETUP([Symbols])
949
950AT_BISON_OPTION_PUSHDEFS
951AT_DATA_GRAMMAR([input.y],
952[[%token WITH-DASH
953%token WITHOUT_DASH "WITHOUT-DASH"
954%token WITH.PERIOD
955%token WITHOUT_PERIOD "WITHOUT.PERIOD"
956%code {
957 ]AT_YYERROR_DECLARE[
958 ]AT_YYLEX_DECLARE[
959}
960%%
961start: with-dash without_dash with.period without_period;
962with-dash: WITH-DASH;
963without_dash: "WITHOUT-DASH";
964with.period: WITH.PERIOD;
965without_period: "WITHOUT.PERIOD";
966%%
967]AT_YYERROR_DEFINE[
968]AT_YYLEX_DEFINE[
969]])
970AT_BISON_OPTION_POPDEFS
971
972# POSIX Yacc accept periods, but not dashes.
973AT_BISON_CHECK([--yacc -Wno-error input.y], [], [],
974[[input.y:9.8-16: warning: POSIX Yacc forbids dashes in symbol names: WITH-DASH [-Wyacc]
975input.y:20.8-16: warning: POSIX Yacc forbids dashes in symbol names: with-dash [-Wyacc]
976]])
977
978# So warn about them.
979AT_BISON_CHECK([-Wyacc input.y], [], [],
980[[input.y:9.8-16: warning: POSIX Yacc forbids dashes in symbol names: WITH-DASH [-Wyacc]
981input.y:20.8-16: warning: POSIX Yacc forbids dashes in symbol names: with-dash [-Wyacc]
982]])
983
984# Dashes are fine for GNU Bison.
985AT_BISON_CHECK([-o input.c input.y])
986
987# Make sure we don't export silly token identifiers with periods or dashes.
988AT_COMPILE([input.o])
989
990
991# Periods are genuine letters, they can start identifiers.
992# Digits and dashes cannot.
993AT_DATA_GRAMMAR([input.y],
994[[%token .GOOD
995 -GOOD
996 1NV4L1D
997 -123
998%%
999start: .GOOD GOOD
1000]])
1001AT_BISON_CHECK([-o input.c input.y], [1], [],
1002[[input.y:10.10: error: invalid character: '-'
1003input.y:11.10-16: error: invalid identifier: '1NV4L1D'
1004input.y:12.10: error: invalid character: '-'
1005]])
1006
1007AT_CLEANUP
1008
1009
1010## ----------------- ##
1011## Numbered tokens. ##
1012## ----------------- ##
1013
1014AT_SETUP([Numbered tokens])
1015
1016AT_DATA_GRAMMAR([redecl.y],
1017[[%token DECIMAL_1 11259375
1018 HEXADECIMAL_1 0xabcdef
1019 HEXADECIMAL_2 0xFEDCBA
1020 DECIMAL_2 16702650
1021%%
1022start: DECIMAL_1 HEXADECIMAL_2;
1023]])
1024
1025AT_BISON_CHECK([redecl.y], [1], [],
1026[[redecl.y:10.10-22: error: user token number 11259375 redeclaration for HEXADECIMAL_1
1027redecl.y:9.8-16: previous declaration for DECIMAL_1
1028redecl.y:12.10-18: error: user token number 16702650 redeclaration for DECIMAL_2
1029redecl.y:11.10-22: previous declaration for HEXADECIMAL_2
1030]])
1031
1032AT_DATA_GRAMMAR([too-large.y],
1033[[%token TOO_LARGE_DEC 999999999999999999999
1034 TOO_LARGE_HEX 0xFFFFFFFFFFFFFFFFFFF
1035%%
1036start: TOO_LARGE_DEC TOO_LARGE_HEX
1037%%
1038]])
1039
1040AT_BISON_CHECK([too-large.y], [1], [],
1041[[too-large.y:9.22-42: error: integer out of range: '999999999999999999999'
1042too-large.y:10.24-44: error: integer out of range: '0xFFFFFFFFFFFFFFFFFFF'
1043]])
1044
1045AT_CLEANUP
1046
1047
1048## --------------------- ##
1049## Unclosed constructs. ##
1050## --------------------- ##
1051
1052AT_SETUP([Unclosed constructs])
1053
1054# Bison's scan-gram.l once forgot to STRING_FINISH some unclosed
1055# constructs, so they were prepended to whatever it STRING_GROW'ed
1056# next. It also threw them away rather than returning them to the
1057# parser. The effect was confusing subsequent error messages.
1058
1059AT_DATA([input.y],
1060[[%token A "a
1061%token B "b"
1062%token AB "ab" // Used to complain that "ab" was already used.
1063%token C '1
1064%token TWO "2"
1065%token TICK_TWELVE "'12" // Used to complain that "'12" was already used.
1066
1067%%
1068
1069start: ;
1070
1071// Used to report a syntax error because it didn't see any kind of symbol
1072// identifier.
1073%type <f> 'a
1074;
1075%type <f> "a
1076;
1077// Used to report a syntax error because it didn't see braced code.
1078%destructor { free ($$)
1079]])
1080
1081AT_BISON_CHECK([-fcaret -o input.c input.y], 1, [],
1082[[input.y:1.10-2.0: error: missing '"' at end of line
1083 %token A "a
1084 ^^
1085input.y:4.10-5.0: error: missing "'" at end of line
1086 %token C '1
1087 ^^
1088input.y:14.11-15.0: error: missing "'" at end of line
1089 %type <f> 'a
1090 ^^
1091input.y:16.11-17.0: error: missing '"' at end of line
1092 %type <f> "a
1093 ^^
1094input.y:19.13-20.0: error: missing '}' at end of file
1095 %destructor { free ($$)
1096 ^^^^^^^^^^^
1097input.y:20.1: error: syntax error, unexpected end of file
1098]])
1099
1100AT_CLEANUP
1101
1102
1103## ------------------------- ##
1104## %start after first rule. ##
1105## ------------------------- ##
1106
1107AT_SETUP([%start after first rule])
1108
1109# Bison once complained that a %start after the first rule was a
1110# redeclaration of the start symbol.
1111
1112AT_DATA([input.y],
1113[[%%
1114false_start: ;
1115start: false_start ;
1116%start start;
1117]])
1118
1119AT_BISON_CHECK([-o input.c input.y])
1120
1121AT_CLEANUP
1122
1123
1124## --------------------- ##
1125## %prec takes a token. ##
1126## --------------------- ##
1127
1128AT_SETUP([%prec takes a token])
1129
1130# Bison once allowed %prec sym where sym was a nonterminal.
1131
1132AT_DATA([input.y],
1133[[%%
1134start: PREC %prec PREC ;
1135PREC: ;
1136]])
1137
1138AT_BISON_CHECK([input.y], [1], [],
1139[[input.y:3.1-4: error: rule given for PREC, which is a token
1140]])
1141
1142AT_CLEANUP
1143
1144
1145## ------------------------------- ##
1146## %prec's token must be defined. ##
1147## ------------------------------- ##
1148
1149AT_SETUP([[%prec's token must be defined]])
1150
1151# According to POSIX, a %prec token must be defined separately.
1152
1153AT_DATA([[input.y]],
1154[[%%
1155start: %prec PREC ;
1156]])
1157
1158AT_BISON_CHECK([[input.y]], [[0]], [],
1159[[input.y:2.8-17: warning: token for %prec is not defined: PREC [-Wother]
1160]])
1161
1162AT_CLEANUP
1163
1164
1165## -------------------------------- ##
1166## Reject unused %code qualifiers. ##
1167## -------------------------------- ##
1168
1169AT_SETUP([Reject unused %code qualifiers])
1170
1171AT_DATA([input-c.y],
1172[[%code q {}
1173%code bad {}
1174%code bad {}
1175%code format {}
1176%%
1177start: ;
1178]])
1179AT_BISON_CHECK([[input-c.y]], [[1]], [],
1180[[input-c.y:1.7: error: %code qualifier 'q' is not used
1181input-c.y:2.7-9: error: %code qualifier 'bad' is not used
1182input-c.y:3.7-9: error: %code qualifier 'bad' is not used
1183input-c.y:4.7-12: error: %code qualifier 'format' is not used
1184]])
1185
1186AT_DATA([input-c-glr.y],
1187[[%code q {}
1188%code bad {}
1189 %code bad {}
1190%%
1191start: ;
1192]])
1193AT_BISON_CHECK([[input-c-glr.y]], [[1]], [],
1194[[input-c-glr.y:1.7: error: %code qualifier 'q' is not used
1195input-c-glr.y:2.7-9: error: %code qualifier 'bad' is not used
1196input-c-glr.y:3.8-10: error: %code qualifier 'bad' is not used
1197]])
1198
1199AT_DATA([input-c++.y],
1200[[%code q {}
1201%code bad {}
1202 %code q {}
1203%%
1204start: ;
1205]])
1206AT_BISON_CHECK([[input-c++.y]], [[1]], [],
1207[[input-c++.y:1.7: error: %code qualifier 'q' is not used
1208input-c++.y:2.7-9: error: %code qualifier 'bad' is not used
1209input-c++.y:3.8: error: %code qualifier 'q' is not used
1210]])
1211
1212AT_DATA([input-c++-glr.y],
1213[[%code bad {}
1214%code q {}
1215%code q {}
1216%%
1217start: ;
1218]])
1219AT_BISON_CHECK([[input-c++-glr.y]], [[1]], [],
1220[[input-c++-glr.y:1.7-9: error: %code qualifier 'bad' is not used
1221input-c++-glr.y:2.7: error: %code qualifier 'q' is not used
1222input-c++-glr.y:3.7: error: %code qualifier 'q' is not used
1223]])
1224
1225AT_DATA([special-char-@@.y],
1226[[%code bad {}
1227%code q {}
1228%code q {}
1229%%
1230start: ;
1231]])
1232AT_BISON_CHECK([[special-char-@@.y]], [[1]], [],
1233[[special-char-@@.y:1.7-9: error: %code qualifier 'bad' is not used
1234special-char-@@.y:2.7: error: %code qualifier 'q' is not used
1235special-char-@@.y:3.7: error: %code qualifier 'q' is not used
1236]])
1237
1238AT_DATA([special-char-@:>@.y],
1239[[%code bad {}
1240%code q {}
1241%code q {}
1242%%
1243start: ;
1244]])
1245AT_BISON_CHECK([[special-char-@:>@.y]], [[1]], [],
1246[[special-char-@:>@.y:1.7-9: error: %code qualifier 'bad' is not used
1247special-char-@:>@.y:2.7: error: %code qualifier 'q' is not used
1248special-char-@:>@.y:3.7: error: %code qualifier 'q' is not used
1249]])
1250
1251AT_CLEANUP
1252
1253
1254## ---------------- ##
1255## %define errors. ##
1256## ---------------- ##
1257
1258AT_SETUP([%define errors])
1259
1260AT_DATA([input-redefined.y],
1261[[%define var "value1"
1262%define var "value1"
1263 %define var "value2"
1264%define special1 "@:>@"
1265%define special2 "@<:@"
1266%%
1267start: ;
1268]])
1269
1270AT_BISON_CHECK([[input-redefined.y]], [[1]], [],
1271[[input-redefined.y:2.9-11: error: %define variable 'var' redefined
1272input-redefined.y:1.9-11: previous definition
1273input-redefined.y:3.10-12: error: %define variable 'var' redefined
1274input-redefined.y:2.9-11: previous definition
1275]])
1276
1277AT_DATA([input-unused.y],
1278[[%define var "value"
1279%%
1280start: ;
1281]])
1282
1283AT_BISON_CHECK([[input-unused.y]], [[1]], [],
1284[[input-unused.y:1.9-11: error: %define variable 'var' is not used
1285]])
1286
1287AT_CLEANUP
1288
1289
1290## ----------------------------------- ##
1291## %define, --define, --force-define. ##
1292## ----------------------------------- ##
1293
1294AT_SETUP([[%define, --define, --force-define]])
1295
1296AT_DATA([[skel.c]],
1297[[m4@&t@_divert_push(0)@
1298@output(b4_parser_file_name@)@
1299[var-dd: ]b4_percent_define_get([[var-dd]])[
1300var-ff: ]b4_percent_define_get([[var-ff]])[
1301var-dfg: ]b4_percent_define_get([[var-dfg]])[
1302var-fd: ]b4_percent_define_get([[var-fd]])
1303m4@&t@_divert_pop(0)
1304]])
1305AT_DATA([[input.y]],
1306[[%define var-dfg "gram"
1307%%
1308start: ;
1309]])
1310AT_BISON_CHECK([[-Dvar-dd=cmd-d1 -Dvar-dd=cmd-d2 \
1311 -Fvar-ff=cmd-f1 -Fvar-ff=cmd-f2 \
1312 -Dvar-dfg=cmd-d -Fvar-dfg=cmd-f \
1313 -Fvar-fd=cmd-f -Dvar-fd=cmd-d \
1314 --skeleton ./skel.c input.y]])
1315AT_CHECK([[cat input.tab.c]], [[0]],
1316[[var-dd: cmd-d2
1317var-ff: cmd-f2
1318var-dfg: cmd-f
1319var-fd: cmd-d
1320]])
1321
1322AT_DATA([[input-dg.y]],
1323[[%define var "gram"
1324%%
1325start: ;
1326]])
1327AT_BISON_CHECK([[-Dvar=cmd-d input-dg.y]], [[1]], [],
1328[[input-dg.y:1.9-11: error: %define variable 'var' redefined
1329<command line>:2: previous definition
1330]])
1331
1332AT_DATA([[input-dg.y]],
1333[[%define var "gram"
1334%%
1335start: ;
1336]])
1337AT_BISON_CHECK([[-fcaret -Dvar=cmd-d input-dg.y]], [[1]], [],
1338[[input-dg.y:1.9-11: error: %define variable 'var' redefined
1339 %define var "gram"
1340 ^^^
1341<command line>:3: previous definition
1342]])
1343
1344AT_DATA([[input-unused.y]],
1345[[%%
1346start: ;
1347]])
1348AT_BISON_CHECK([[-Dunused-d -Funused-f input-unused.y]], [[1]], [],
1349[[<command line>:2: error: %define variable 'unused-d' is not used
1350<command line>:3: error: %define variable 'unused-f' is not used
1351]])
1352
1353AT_CLEANUP
1354
1355## --------------------------- ##
1356## %define Boolean variables. ##
1357## --------------------------- ##
1358
1359AT_SETUP([["%define" Boolean variables]])
1360
1361AT_DATA([Input.y],
1362[[%language "Java"
1363%define public "maybe"
1364%define parser_class_name "Input"
1365%%
1366start: ;
1367]])
1368
1369AT_BISON_CHECK([[Input.y]], [1], [],
1370[[Input.y:2.9-14: error: invalid value for %define Boolean variable 'public'
1371]])
1372
1373AT_CLEANUP
1374
1375## ------------------------ ##
1376## %define enum variables. ##
1377## ------------------------ ##
1378
1379AT_SETUP([["%define" enum variables]])
1380
1381# Check errors from the front-end, and the back-end. Since the
1382# front-end quits before calling the back-end, these tests cannot be
1383# fused.
1384
1385# Front-end.
1386AT_DATA([[input.y]],
1387[[%define lr.default-reduction bogus
1388%%
1389start: ;
1390]])
1391AT_BISON_CHECK([[-fcaret input.y]], [[1]], [[]],
1392[[input.y:1.9-28: error: invalid value for %define variable 'lr.default-reduction': 'bogus'
1393 %define lr.default-reduction bogus
1394 ^^^^^^^^^^^^^^^^^^^^
1395input.y:1.9-28: accepted value: 'most'
1396input.y:1.9-28: accepted value: 'consistent'
1397input.y:1.9-28: accepted value: 'accepting'
1398]])
1399
1400# Back-end.
1401AT_DATA([[input.y]],
1402[[%define api.push-pull neither
1403%%
1404start: ;
1405]])
1406AT_BISON_CHECK([[-fcaret input.y]], [[1]], [[]],
1407[[input.y:1.9-21: error: invalid value for %define variable 'api.push-pull': 'neither'
1408 %define api.push-pull neither
1409 ^^^^^^^^^^^^^
1410input.y:1.9-21: accepted value: 'pull'
1411input.y:1.9-21: accepted value: 'push'
1412input.y:1.9-21: accepted value: 'both'
1413]])
1414
1415AT_CLEANUP
1416
1417## -------------------------------- ##
1418## %define backward compatibility. ##
1419## -------------------------------- ##
1420
1421AT_SETUP([["%define" backward compatibility]])
1422
1423# The error messages tell us whether the variables are properly updated.
1424AT_DATA([[input.y]],
1425[[%define api.push_pull both
1426%define lr.keep_unreachable_states maybe
1427%define namespace "foo"
1428%define api.namespace "foo"
1429%define variant
1430%%
1431start: ;
1432]])
1433AT_BISON_CHECK([[-fcaret input.y]], [1], [],
1434[[input.y:1.9-21: warning: deprecated directive, use '%define api.push-pull both' [-Wdeprecated]
1435 %define api.push_pull both
1436 ^^^^^^^^^^^^^
1437input.y:2.9-34: warning: deprecated directive, use '%define lr.keep-unreachable-state maybe' [-Wdeprecated]
1438 %define lr.keep_unreachable_states maybe
1439 ^^^^^^^^^^^^^^^^^^^^^^^^^^
1440input.y:3.9-17: warning: deprecated directive, use '%define api.namespace foo' [-Wdeprecated]
1441 %define namespace "foo"
1442 ^^^^^^^^^
1443input.y:4.9-21: error: %define variable 'api.namespace' redefined
1444 %define api.namespace "foo"
1445 ^^^^^^^^^^^^^
1446input.y:3.9-17: previous definition
1447 %define namespace "foo"
1448 ^^^^^^^^^
1449input.y:5.9-15: warning: deprecated directive, use '%define api.value.type variant' [-Wdeprecated]
1450 %define variant
1451 ^^^^^^^
1452]])
1453
1454AT_CLEANUP
1455
1456## ------------------------- ##
1457## Unused %define api.pure. ##
1458## ------------------------- ##
1459
1460AT_SETUP([[Unused %define api.pure]])
1461
1462# AT_CHECK_API_PURE(DECLS, VALUE)
1463# -------------------------------
1464# Make sure Bison reports that `%define api.pure VALUE' is unused when DECLS
1465# are specified.
1466m4_define([AT_CHECK_API_PURE],
1467[
1468AT_DATA([[input.y]],
1469[[%define api.pure ]$2[
1470]$1[
1471%%
1472start: ;
1473]])
1474
1475AT_BISON_CHECK([[input.y]], [[1]], [],
1476[[input.y:1.9-16: error: %define variable 'api.pure' is not used
1477]])
1478])
1479
1480AT_CHECK_API_PURE([[%language "c++"]], [[]])
1481AT_CHECK_API_PURE([[%language "c++"]], [[false]])
1482AT_CHECK_API_PURE([[%language "c++" %glr-parser]], [[""]])
1483AT_CHECK_API_PURE([[%language "c++" %glr-parser]], [[false]])
1484AT_CHECK_API_PURE([[%language "java"]], [[true]])
1485AT_CHECK_API_PURE([[%language "java"]], [[false]])
1486
1487AT_CLEANUP
1488
1489## -------------------------------- ##
1490## C++ namespace reference errors. ##
1491## -------------------------------- ##
1492
1493AT_SETUP([[C++ namespace reference errors]])
1494
1495# AT_CHECK_NAMESPACE_ERROR(NAMESPACE-DECL, ERROR, [ERROR], ...)
1496# -------------------------------------------------------------
1497# Make sure Bison reports all ERROR's for %define namespace "NAMESPACE-DECL".
1498m4_define([AT_CHECK_NAMESPACE_ERROR],
1499[
1500AT_DATA([[input.y]],
1501[[%language "C++"
1502%defines
1503%define api.namespace "]$1["
1504%%
1505start: ;
1506]])
1507
1508AT_BISON_CHECK([[input.y]], [1], [],
1509[m4_foreach([b4_arg], m4_dquote(m4_shift($@)),
1510[[input.y:3.9-21: error: ]b4_arg[
1511]])])
1512])
1513
1514AT_CHECK_NAMESPACE_ERROR([[]],
1515 [[namespace reference is empty]])
1516AT_CHECK_NAMESPACE_ERROR([[ ]],
1517 [[namespace reference is empty]])
1518AT_CHECK_NAMESPACE_ERROR([[foo::::bar]],
1519 [[namespace reference has consecutive "::"]])
1520AT_CHECK_NAMESPACE_ERROR([[foo:: ::bar]],
1521 [[namespace reference has consecutive "::"]])
1522AT_CHECK_NAMESPACE_ERROR([[::::bar]],
1523 [[namespace reference has consecutive "::"]])
1524AT_CHECK_NAMESPACE_ERROR([[:: ::bar]],
1525 [[namespace reference has consecutive "::"]])
1526AT_CHECK_NAMESPACE_ERROR([[foo::bar:: ::]],
1527 [[namespace reference has consecutive "::"]],
1528 [[namespace reference has a trailing "::"]])
1529AT_CHECK_NAMESPACE_ERROR([[foo::bar::]],
1530 [[namespace reference has a trailing "::"]])
1531AT_CHECK_NAMESPACE_ERROR([[foo::bar:: ]],
1532 [[namespace reference has a trailing "::"]])
1533AT_CHECK_NAMESPACE_ERROR([[::]],
1534 [[namespace reference has a trailing "::"]])
1535
1536AT_CLEANUP
1537
1538## ------------------------ ##
1539## Bad character literals. ##
1540## ------------------------ ##
1541
1542# Bison used to accept character literals that were empty or contained
1543# too many characters.
1544
1545# FIXME: AT_DATA or some variant of AT_DATA may eventually permit
1546# the final newline to be omitted. See the threads starting at
1547# <http://lists.gnu.org/archive/html/bison-patches/2009-07/msg00019.html>.
1548
1549AT_SETUP([[Bad character literals]])
1550
1551AT_DATA([empty.y],
1552[[%%
1553start: '';
1554start: '
1555]])
1556AT_CHECK([[$PERL -e "print 'start: \'';" >> empty.y || exit 77]])
1557
1558AT_BISON_CHECK([-fcaret empty.y], [1], [],
1559[[empty.y:2.8-9: warning: empty character literal [-Wother]
1560 start: '';
1561 ^^
1562empty.y:3.8-4.0: error: missing "'" at end of line
1563 start: '
1564 ^
1565empty.y:3.8-4.0: warning: empty character literal [-Wother]
1566 start: '
1567 ^
1568empty.y:4.8: error: missing "'" at end of file
1569 start: '
1570 ^
1571empty.y:4.8: warning: empty character literal [-Wother]
1572 start: '
1573 ^
1574]])
1575
1576AT_DATA([two.y],
1577[[%%
1578start: 'ab';
1579start: 'ab
1580]])
1581AT_CHECK([[$PERL -e "print 'start: \'ab';" >> two.y || exit 77]])
1582
1583AT_BISON_CHECK([two.y], [1], [],
1584[[two.y:2.8-11: warning: extra characters in character literal [-Wother]
1585two.y:3.8-4.0: error: missing "'" at end of line
1586two.y:3.8-4.0: warning: extra characters in character literal [-Wother]
1587two.y:4.8-10: error: missing "'" at end of file
1588two.y:4.8-10: warning: extra characters in character literal [-Wother]
1589]])
1590
1591AT_DATA([three.y],
1592[[%%
1593start: 'abc';
1594start: 'abc
1595]])
1596AT_CHECK([[$PERL -e "print 'start: \'abc';" >> three.y || exit 77]])
1597
1598AT_BISON_CHECK([three.y], [1], [],
1599[[three.y:2.8-12: warning: extra characters in character literal [-Wother]
1600three.y:3.8-4.0: error: missing "'" at end of line
1601three.y:3.8-4.0: warning: extra characters in character literal [-Wother]
1602three.y:4.8-11: error: missing "'" at end of file
1603three.y:4.8-11: warning: extra characters in character literal [-Wother]
1604]])
1605
1606AT_CLEANUP
1607
1608## ------------------------- ##
1609## Bad escapes in literals. ##
1610## ------------------------- ##
1611
1612AT_SETUP([[Bad escapes in literals]])
1613
1614AT_DATA([input.y],
1615[[%%
1616start: '\777' '\0' '\xfff' '\x0'
1617 '\uffff' '\u0000' '\Uffffffff' '\U00000000'
1618 '\ ' '\A';
1619]])
1620
1621# It is not easy to create special characters, we cannot even trust tr.
1622# Beside we cannot even expect "echo '\0'" to output two characters
1623# (well three with \n): at least Bash 3.2 converts the two-character
1624# sequence "\0" into a single NUL character.
1625AT_CHECK([[$PERL -e 'print "start: \"\\\t\\\f\\\0\\\1\" ;";' >> input.y \
1626 || exit 77]])
1627
1628AT_BISON_CHECK([input.y], [1], [],
1629[[input.y:2.9-12: error: invalid number after \-escape: 777
1630input.y:2.8-13: warning: empty character literal [-Wother]
1631input.y:2.16-17: error: invalid number after \-escape: 0
1632input.y:2.15-18: warning: empty character literal [-Wother]
1633input.y:2.21-25: error: invalid number after \-escape: xfff
1634input.y:2.20-26: warning: empty character literal [-Wother]
1635input.y:2.29-31: error: invalid number after \-escape: x0
1636input.y:2.28-32: warning: empty character literal [-Wother]
1637input.y:3.9-14: error: invalid number after \-escape: uffff
1638input.y:3.8-15: warning: empty character literal [-Wother]
1639input.y:3.18-23: error: invalid number after \-escape: u0000
1640input.y:3.17-24: warning: empty character literal [-Wother]
1641input.y:3.27-36: error: invalid number after \-escape: Uffffffff
1642input.y:3.26-37: warning: empty character literal [-Wother]
1643input.y:3.40-49: error: invalid number after \-escape: U00000000
1644input.y:3.39-50: warning: empty character literal [-Wother]
1645input.y:4.9-10: error: invalid character after \-escape: ' '
1646input.y:4.8-11: warning: empty character literal [-Wother]
1647input.y:4.14-15: error: invalid character after \-escape: A
1648input.y:4.13-16: warning: empty character literal [-Wother]
1649input.y:5.9-16: error: invalid character after \-escape: \t
1650input.y:5.17: error: invalid character after \-escape: \f
1651input.y:5.18: error: invalid character after \-escape: \0
1652input.y:5.19: error: invalid character after \-escape: \001
1653]])
1654
1655AT_CLEANUP
1656
1657## ------------------------- ##
1658## LAC: Errors for %define. ##
1659## ------------------------- ##
1660
1661AT_SETUP([[LAC: Errors for %define]])
1662
1663AT_DATA([[input.y]],
1664[[%%
1665start: ;
1666]])
1667
1668# parse.lac.* options are useless if LAC isn't actually activated.
1669AT_BISON_CHECK([[-Dparse.lac.es-capacity-initial=1 input.y]],
1670 [[1]], [],
1671[[<command line>:2: error: %define variable 'parse.lac.es-capacity-initial' is not used
1672]])
1673AT_BISON_CHECK([[-Dparse.lac.memory-trace=full input.y]],
1674 [[1]], [],
1675[[<command line>:2: error: %define variable 'parse.lac.memory-trace' is not used
1676]])
1677
1678AT_CLEANUP
1679
1680## --------------------------------------------- ##
1681## -Werror is not affected by -Wnone and -Wall. ##
1682## --------------------------------------------- ##
1683
1684AT_SETUP([[-Werror is not affected by -Wnone and -Wall]])
1685
1686AT_DATA([[input.y]],
1687[[%%
1688foo-bar: ;
1689]])
1690
1691# -Werror is not enabled by -Wall or equivalent.
1692AT_BISON_CHECK([[-Wall input.y]], [[0]], [[]],
1693[[input.y:2.1-7: warning: POSIX Yacc forbids dashes in symbol names: foo-bar [-Wyacc]
1694]])
1695AT_BISON_CHECK([[-W input.y]], [[0]], [[]],
1696[[input.y:2.1-7: warning: POSIX Yacc forbids dashes in symbol names: foo-bar [-Wyacc]
1697]])
1698AT_BISON_CHECK([[-Wno-none input.y]], [[0]], [[]],
1699[[input.y:2.1-7: warning: POSIX Yacc forbids dashes in symbol names: foo-bar [-Wyacc]
1700]])
1701
1702# -Werror is not disabled by -Wnone or equivalent.
1703AT_BISON_CHECK([[-Werror,none,yacc input.y]], [[1]], [[]], [[stderr]])
1704AT_CHECK([[sed 's/^.*bison:/bison:/' stderr]], [[0]],
1705[[input.y:2.1-7: error: POSIX Yacc forbids dashes in symbol names: foo-bar [-Werror=yacc]
1706]])
1707[mv stderr experr]
1708AT_BISON_CHECK([[-Werror,no-all,yacc input.y]], [[1]], [[]], [[experr]])
1709
1710AT_CLEANUP
1711
1712
1713## ------------------------------------------------------ ##
1714## %name-prefix and %define api.prefix are incompatible. ##
1715## ------------------------------------------------------ ##
1716
1717AT_SETUP([[%name-prefix and api.prefix are incompatible]])
1718
1719# AT_TEST(DIRECTIVES, OPTIONS, ERROR-LOCATION)
1720# --------------------------------------------
1721m4_pushdef([AT_TEST],
1722[AT_DATA([[input.y]],
1723[[$1
1724%%
1725exp: /* empty */;
1726]])
1727AT_BISON_CHECK([[$2 input.y]], [[1]], [[]],
1728[[$3: error: '%name-prefix' and '%define api.prefix' cannot be used together
1729]])
1730])
1731
1732AT_TEST([%define api.prefix foo %name-prefix "bar"], [], [input.y:1.9-18])
1733AT_TEST([], [-Dapi.prefix=foo -p bar], [<command line>:2])
1734AT_TEST([%name-prefix "bar"], [-Dapi.prefix=foo], [<command line>:2])
1735AT_TEST([%define api.prefix foo], [-p bar], [input.y:1.9-18])
1736
1737m4_popdef([AT_TEST])
1738
1739AT_CLEANUP
1740
1741
1742## -------------- ##
1743## Stray $ or @. ##
1744## -------------- ##
1745
1746AT_SETUP([[Stray $ or @]])
1747
1748# Give %printer and %destructor "<*> exp TOK" instead of "<*>" to
1749# check that the warnings are reported once, not three times.
1750
1751AT_DATA_GRAMMAR([[input.y]],
1752[[%type <TYPE> exp
1753%token <TYPE> TOK TOK2
1754%destructor { $%; @%; } <*> exp TOK;
1755%initial-action { $%; @%; };
1756%printer { $%; @%; } <*> exp TOK;
1757%{ $ @ %} // Should not warn.
1758%%
1759exp: TOK { $%; @%; $$ = $1; };
1760%%
1761$ @ // Should not warn.
1762]])
1763
1764AT_BISON_CHECK([[-Wall input.y]], 0, [],
1765[[input.y:11.19: warning: stray '$' [-Wother]
1766input.y:11.23: warning: stray '@' [-Wother]
1767input.y:12.19: warning: stray '$' [-Wother]
1768input.y:12.23: warning: stray '@' [-Wother]
1769input.y:13.19: warning: stray '$' [-Wother]
1770input.y:13.23: warning: stray '@' [-Wother]
1771input.y:16.19: warning: stray '$' [-Wother]
1772input.y:16.23: warning: stray '@' [-Wother]
1773]])
1774
1775AT_CLEANUP
1776
1777
1778
1779## ---------------- ##
1780## Code injection. ##
1781## ---------------- ##
1782
1783
1784AT_SETUP([[Code injection]])
1785
1786m4_pattern_allow([^m4_errprintn$])
1787
1788# AT_TEST([MACRO])
1789# ----------------
1790# Try to have MACRO be run by bison.
1791m4_pushdef([AT_TEST],
1792[AT_DATA([[input.y]],
1793[[%type <$1(DEAD %type)> exp
1794%token <$1(DEAD %token)> a
1795%token b
1796%initial-action
1797{
1798 $$;
1799 $<$1(DEAD %initial-action)>$
1800};
1801%printer
1802{
1803 $$
1804 $<$1(DEAD %printer)>$
1805} <> <*>;
1806%lex-param
1807{
1808 $1(DEAD %lex-param)
1809};
1810%parse-param
1811{
1812 $1(DEAD %parse-param)
1813};
1814%%
1815exp:
1816 a a[name] b
1817 {
1818 $$;
1819 $][1;
1820 $<$1(DEAD action 1)>$
1821 $<$1(DEAD action 2)>1
1822 $<$1(DEAD action 3)>name
1823 $<$1(DEAD action 4)>0
1824 ;
1825 };
1826]])
1827
1828# FIXME: Provide a means to iterate over all the skeletons.
1829AT_BISON_CHECK([[-d input.y]])
1830AT_BISON_CHECK([[-d -S glr.c input.y]])
1831AT_BISON_CHECK([[-d -S lalr1.cc input.y]])
1832AT_BISON_CHECK([[-d -S glr.cc input.y]])
1833AT_BISON_CHECK([[ -S lalr1.java input.y]])
1834])
1835
1836AT_TEST([m4_errprintn])
1837AT_TEST([@:>@m4_errprintn])
1838
1839m4_popdef([AT_TEST])
1840
1841AT_CLEANUP
1842
1843##----------------------- ##
1844## Deprecated directives. ##
1845## ---------------------- ##
1846
1847AT_SETUP([[Deprecated directives]])
1848
1849AT_KEYWORDS([[deprec]])
1850
1851AT_DATA_GRAMMAR([[input.y]],
1852[[
1853%default_prec
1854%error_verbose
1855%expect_rr 0
1856%file-prefix = "foo"
1857%file-prefix
1858 =
1859"bar"
1860%fixed-output_files
1861%fixed_output-files
1862%fixed-output-files
1863%name-prefix= "foo"
1864%no-default_prec
1865%no_default-prec
1866%no_lines
1867%output = "foo"
1868%pure_parser
1869%token_table
1870%glr-parser
1871%% exp : '0'
1872]])
1873
1874AT_BISON_CHECK([[input.y]], [[0]], [[]],
1875[[input.y:10.1-13: warning: deprecated directive: '%default_prec', use '%default-prec' [-Wdeprecated]
1876input.y:11.1-14: warning: deprecated directive: '%error_verbose', use '%define parse.error verbose' [-Wdeprecated]
1877input.y:12.1-10: warning: deprecated directive: '%expect_rr', use '%expect-rr' [-Wdeprecated]
1878input.y:13.1-14: warning: deprecated directive: '%file-prefix =', use '%file-prefix' [-Wdeprecated]
1879input.y:14.1-15.2: warning: deprecated directive: '%file-prefix\n =', use '%file-prefix' [-Wdeprecated]
1880input.y:17.1-19: warning: deprecated directive: '%fixed-output_files', use '%fixed-output-files' [-Wdeprecated]
1881input.y:18.1-19: warning: deprecated directive: '%fixed_output-files', use '%fixed-output-files' [-Wdeprecated]
1882input.y:20.1-13: warning: deprecated directive: '%name-prefix=', use '%name-prefix' [-Wdeprecated]
1883input.y:21.1-16: warning: deprecated directive: '%no-default_prec', use '%no-default-prec' [-Wdeprecated]
1884input.y:22.1-16: warning: deprecated directive: '%no_default-prec', use '%no-default-prec' [-Wdeprecated]
1885input.y:23.1-9: warning: deprecated directive: '%no_lines', use '%no-lines' [-Wdeprecated]
1886input.y:24.1-9: warning: deprecated directive: '%output =', use '%output' [-Wdeprecated]
1887input.y:25.1-12: warning: deprecated directive: '%pure_parser', use '%pure-parser' [-Wdeprecated]
1888input.y:26.1-12: warning: deprecated directive: '%token_table', use '%token-table' [-Wdeprecated]
1889]])
1890
1891AT_CLEANUP
1892
1893## ---------------------------- ##
1894## Unput's effect on locations. ##
1895## ---------------------------- ##
1896dnl When the scanner detects a deprecated construct, it unputs the correct
1897dnl version, but it should *not* have any impact on the scanner cursor. If it
1898dnl does, the locations of directives on the same line become erroneous.
1899
1900AT_SETUP([[Unput's effect on locations]])
1901
1902AT_KEYWORDS([[deprec]])
1903
1904AT_DATA_GRAMMAR([[input.y]],
1905[[
1906%glr-parser
1907%expect_rr 42 %expect_rr 42
1908 %expect_rr 42
1909%error_verbose %error_verbose
1910 %error_verbose
1911%% exp: '0'
1912]])
1913
1914AT_BISON_CHECK([[input.y]], [[1]], [[]],
1915[[input.y:11.1-10: warning: deprecated directive: '%expect_rr', use '%expect-rr' [-Wdeprecated]
1916input.y:11.15-24: warning: deprecated directive: '%expect_rr', use '%expect-rr' [-Wdeprecated]
1917input.y:12.15-24: warning: deprecated directive: '%expect_rr', use '%expect-rr' [-Wdeprecated]
1918input.y:13.1-14: warning: deprecated directive: '%error_verbose', use '%define parse.error verbose' [-Wdeprecated]
1919input.y:13.16-29: warning: deprecated directive: '%error_verbose', use '%define parse.error verbose' [-Wdeprecated]
1920input.y:13.11-21: error: %define variable 'parse.error' redefined
1921input.y:13-6: previous definition
1922input.y:14.16-29: warning: deprecated directive: '%error_verbose', use '%define parse.error verbose' [-Wdeprecated]
1923input.y:14.11-21: error: %define variable 'parse.error' redefined
1924input.y:13.11-21: previous definition
1925]])
1926
1927AT_CLEANUP
1928
1929##--------------------------- ##
1930## Non-deprecated directives. ##
1931## -------------------------- ##
1932
1933AT_SETUP([[Non-deprecated directives]])
1934
1935AT_KEYWORDS([[deprec]])
1936
1937AT_DATA_GRAMMAR([[input.y]],
1938[[
1939%default-prec
1940%error-verbose
1941%expect-rr 42
1942%file-prefix "foo"
1943%file-prefix
1944"bar"
1945%fixed-output-files
1946%name-prefix "foo"
1947%no-default-prec
1948%no-lines
1949%output "foo"
1950%pure-parser
1951%token-table
1952%% exp : '0'
1953]])
1954
1955AT_BISON_CHECK([[input.y]], [[0]], [[]],
1956[[input.y: warning: %expect-rr applies only to GLR parsers [-Wother]
1957]])
1958
1959AT_CLEANUP