]> git.saurik.com Git - bison.git/blame - tests/input.at
* src/symlist.c (symbol_list_length): Return int, not unsigned
[bison.git] / tests / input.at
CommitLineData
087b9fdf 1# Checking the Bison scanner. -*- Autotest -*-
378f4bd8 2# Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
9b2d0677
AD
3
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)
7# any later version.
8
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.
13
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
0fb669f9
PE
16# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17# 02110-1301, USA.
9b2d0677
AD
18
19AT_BANNER([[Input Processing.]])
20
21# Mostly test that we are robust to mistakes.
22
6c35d22c 23
9b2d0677
AD
24## ------------ ##
25## Invalid $n. ##
26## ------------ ##
27
e9071366 28AT_SETUP([Invalid \$n and @n])
9b2d0677
AD
29
30AT_DATA([input.y],
31[[%%
bfcf1f3a 32exp: { $$ = $1 ; };
bfcf1f3a 33exp: { @$ = @1 ; };
9b2d0677
AD
34]])
35
36AT_CHECK([bison input.y], [1], [],
e9071366
AD
37[[input.y:2.13-14: integer out of range: `$1'
38input.y:3.13-14: integer out of range: `@1'
9b2d0677
AD
39]])
40
41AT_CLEANUP
9af3fbce
AD
42
43
44## -------------- ##
e776192e 45## Type Clashes. ##
9af3fbce
AD
46## -------------- ##
47
e776192e 48AT_SETUP([Type Clashes])
9af3fbce
AD
49
50AT_DATA([input.y],
ffa4ba3a
JD
51[[%union { int bar; }
52%token foo
9af3fbce
AD
53%type <bar> exp
54%%
ffa4ba3a 55exp: foo { $$; } foo { $2; } foo
9af3fbce
AD
56 | foo
57 | /* Empty. */
58 ;
59]])
60
ffa4ba3a
JD
61AT_CHECK([bison input.y], [1], [],
62[[input.y:5.12-13: $$ for the midrule at $2 of `exp' has no declared type
63input.y:5.24-25: $2 of `exp' has no declared type
64input.y:5.6-32: warning: type clash on default action: <bar> != <>
65input.y:6.6-8: warning: type clash on default action: <bar> != <>
66input.y:7.5: warning: empty rule for typed nonterminal, and no action
9af3fbce
AD
67]])
68
69AT_CLEANUP
5a08f1ce
AD
70
71
ffa4ba3a
JD
72# _AT_UNUSED_VALUES_DECLARATIONS()
73# --------------------------------------------
74# Generate the token, type, and destructor
75# declarations for the unused values tests.
378f4bd8 76
ffa4ba3a
JD
77m4_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;]]])
378f4bd8 81
ffa4ba3a
JD
82
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
89# rather than before.
90
91m4_define([AT_CHECK_UNUSED_VALUES],
92[AT_DATA([input.y],
93m4_ifval($1, [
94
95
96], [_AT_UNUSED_VALUES_DECLARATIONS
97])[[%%
27622431 98start:
ffa4ba3a
JD
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[ }
378f4bd8 102;
27622431
PE
103
104a: INT | INT { } INT { } INT { };
105b: INT | /* empty */;
ffa4ba3a
JD
106c: INT | INT { $]1[ } INT { } INT { };
107d: INT | INT { } INT { $]1[ } INT { };
108e: INT | INT { } INT { } INT { $]1[ };
109f: INT | INT { } INT { } INT { $]$[ = $]1[ + $]3[ + $]5[; };
110g: INT | INT { $]$[ } INT { $]$[ } INT { };
111h: INT | INT { $]$[ } INT { $]$[ = $]2[ } INT { };
112i: INT | INT INT { } { $]$[ = $]1[ + $]2[; };
113j: INT | INT INT { $<integer>$ = 1; } { $]$[ = $]1[ + $]2[; };
114k: INT | INT INT { $]$[; } { $]$[ = $]3[; } { };
115l: INT | INT { $]$[ = $]1[; } INT { $]$[ = $]2[ + $]3[; } INT { $]$[ = $]4[ + $]5[; };]]m4_ifval($1, [
116_AT_UNUSED_VALUES_DECLARATIONS])
117)
118
119AT_CHECK([bison input.y], [0], [],
120[[input.y:11.10-32: warning: unset value: $]$[
121input.y:11.10-32: warning: unused value: $]1[
122input.y:11.10-32: warning: unused value: $]3[
123input.y:11.10-32: warning: unused value: $]5[
124input.y:12.9: warning: empty rule for typed nonterminal, and no action
125input.y:13.10-35: warning: unset value: $]$[
126input.y:13.10-35: warning: unused value: $]3[
127input.y:13.10-35: warning: unused value: $]5[
128input.y:14.10-35: warning: unset value: $]$[
129input.y:14.10-35: warning: unused value: $]3[
130input.y:14.10-35: warning: unused value: $]5[
131input.y:15.10-36: warning: unset value: $]$[
132input.y:15.10-36: warning: unused value: $]3[
133input.y:15.10-36: warning: unused value: $]5[
134input.y:17.10-38: warning: unset value: $]$[
135input.y:17.10-38: warning: unused value: $]1[
136input.y:17.10-38: warning: unused value: $]2[
137input.y:17.10-38: warning: unused value: $]3[
138input.y:17.10-38: warning: unused value: $]4[
139input.y:17.10-38: warning: unused value: $]5[
140input.y:18.10-43: warning: unset value: $]$[
141input.y:18.10-43: warning: unused value: $]1[
142input.y:18.10-43: warning: unused value: $]3[
143input.y:18.10-43: warning: unused value: $]4[
144input.y:18.10-43: warning: unused value: $]5[
145input.y:20.10-55: warning: unused value: $]3[
146input.y:21.10-41: warning: unset value: $]$[
147input.y:21.10-41: warning: unused value: $]1[
148input.y:21.10-41: warning: unused value: $]2[
149input.y:21.10-41: warning: unused value: $]4[
150]])])
27622431 151
378f4bd8 152
ffa4ba3a
JD
153## --------------- ##
154## Unused values. ##
155## --------------- ##
156
157AT_SETUP([Unused values])
158AT_CHECK_UNUSED_VALUES
159AT_CLEANUP
160
161
162## ------------------------------------------ ##
163## Unused values before symbol declarations. ##
164## ------------------------------------------ ##
84866159 165
ffa4ba3a
JD
166AT_SETUP([Unused values before symbol declarations])
167AT_CHECK_UNUSED_VALUES([1])
84866159 168AT_CLEANUP
378f4bd8
AD
169
170
df09ef2e
AD
171## ---------------------- ##
172## Incompatible Aliases. ##
173## ---------------------- ##
174
175AT_SETUP([Incompatible Aliases])
176
177AT_DATA([input.y],
178[[%token foo "foo"
179
180%type <bar> foo
181%printer {bar} foo
182%destructor {bar} foo
183%left foo
184
185%type <baz> "foo"
186%printer {baz} "foo"
187%destructor {baz} "foo"
188%left "foo"
189
190%%
191exp: foo;
192]])
193
194AT_CHECK([bison input.y], [1], [],
195[[input.y:8.7-11: %type redeclaration for foo
dd60572a 196input.y:3.7-11: previous declaration
df09ef2e 197input.y:10.13-17: %destructor redeclaration for foo
dd60572a 198input.y:5.13-17: previous declaration
e2a8c0f5 199input.y:9.10-14: %printer redeclaration for foo
dd60572a 200input.y:4.10-14: previous declaration
df09ef2e 201input.y:11.1-5: %left redeclaration for foo
dd60572a 202input.y:6.1-5: previous declaration
df09ef2e
AD
203]])
204
205AT_CLEANUP
206
207
5a08f1ce
AD
208
209## ----------------------- ##
210## Torturing the Scanner. ##
211## ----------------------- ##
212
213# Be sure to compile and run, so that the C compiler checks what
214# we do.
215
216AT_SETUP([Torturing the Scanner])
217
0baf7c50
PE
218
219AT_DATA([input.y], [])
220AT_CHECK([bison input.y], [1], [],
4a678af8 221[[input.y:1.1: syntax error, unexpected end of file
0baf7c50
PE
222]])
223
224
e9071366 225AT_DATA([input.y],
b2ddc3f3
AD
226[{}
227])
228AT_CHECK([bison input.y], [1], [],
4a678af8 229[[input.y:1.1-2: syntax error, unexpected {...}
b2ddc3f3
AD
230]])
231
232
9501dc6e 233AT_DATA_GRAMMAR([input.y],
5a08f1ce
AD
234[[%{
235/* This is seen in GCC: a %{ and %} in middle of a comment. */
236const char *foo = "So %{ and %} can be here too.";
237
dda7a53e
PE
238#if 0
239/* These examples test Bison while not stressing C compilers too much.
240 Many C compilers mishandle backslash-newlines, so this part of the
241 test is inside "#if 0". The comment and string are written so that
242 the "#endif" will be seen regardless of the C compiler bugs that we
243 know about, namely:
244
245 HP C (as of late 2002) mishandles *\[newline]\[newline]/ within a
246 comment.
247
248 The Apple Darwin compiler (as of late 2002) mishandles
249 \\[newline]' within a character constant.
250
251 */
252
206fe6a5 253/\
dda7a53e
PE
254* A comment with backslash-newlines in it. %} *\
255\
206fe6a5 256/
dda7a53e 257/* { Close the above comment, if the C compiler mishandled it. */
206fe6a5
PE
258
259char str[] = "\\
260" A string with backslash-newlines in it %{ %} \\
dda7a53e 261\
206fe6a5
PE
262"";
263
dda7a53e 264char apostrophe = '\'';
206fe6a5
PE
265#endif
266
5a08f1ce
AD
267#include <stdio.h>
268%}
269/* %{ and %} can be here too. */
270
271%{
272/* Exercise pre-prologue dependency to %union. */
051ade83 273typedef int value;
5a08f1ce
AD
274%}
275
276/* Exercise M4 quoting: '@:>@@:>@', 0. */
277
278/* Also exercise %union. */
279%union
280{
051ade83 281 value ival; /* A comment to exercise an old bug. */
5a08f1ce
AD
282};
283
284
285/* Exercise post-prologue dependency to %union. */
286%{
051ade83 287static YYSTYPE value_as_yystype (value val);
5a08f1ce
AD
288
289/* Exercise quotes in declarations. */
290char quote[] = "@:>@@:>@,";
291%}
292
293%{
294static void yyerror (const char *s);
295static int yylex (void);
296%}
297
206fe6a5 298%type <ival> '@<:@'
5a08f1ce
AD
299
300/* Exercise quotes in strings. */
3dc4c5fa 301%token FAKE "fake @<:@@:>@ \a\b\f\n\r\t\v\"\'\?\\\u005B\U0000005c ??!??'??(??)??-??/??<??=??> \x1\1"
5a08f1ce
AD
302
303%%
206fe6a5 304/* Exercise M4 quoting: '@:>@@:>@', @<:@, 1. */
087b9fdf 305exp: '@<:@' '\1' two '$' '@' '{' oline output.or.oline.opt
5a08f1ce
AD
306 {
307 /* Exercise quotes in braces. */
308 char tmp[] = "@<:@%c@:>@,\n";
309 printf (tmp, $1);
310 }
311;
5b7f88c7
PE
312
313two: '\x000000000000000000000000000000000000000000000000000000000000000000002';
314oline: '@' 'o' 'l' 'i' 'n' 'e' '@' '_' '_' 'o' 'l' 'i' 'n' 'e' '_' '_';
087b9fdf 315output.or.oline.opt: ;|oline;;|output;;;
5b7f88c7 316output: '#' 'o' 'u' 't' 'p' 'u' 't' ' ';
5a08f1ce 317%%
206fe6a5 318/* Exercise M4 quoting: '@:>@@:>@', @<:@, 2. */
5a08f1ce
AD
319
320static YYSTYPE
051ade83 321value_as_yystype (value val)
5a08f1ce
AD
322{
323 YYSTYPE res;
324 res.ival = val;
325 return res;
326}
327
328static int
329yylex (void)
330{
5b7f88c7
PE
331 static const char *input = "@<:@\1\2$@{@oline@__@&t@oline__\
332#output "; /* "
333 */
051ade83 334 yylval = value_as_yystype (*input);
5a08f1ce
AD
335 return *input++;
336}
337
338static void
339yyerror (const char *msg)
340{
341 fprintf (stderr, "%s\n", msg);
342}
343]])
344
9501dc6e
AD
345# Pacify Emacs'font-lock-mode: "
346
5a08f1ce 347AT_DATA([main.c],
051ade83 348[[typedef int value;
5a08f1ce
AD
349#include "input.h"
350
351int yyparse (void);
352
353int
354main (void)
355{
356 return yyparse ();
357}
358]])
359
b56471a6 360AT_CHECK([bison -d -v -o input.c input.y])
efc6bf1b
PE
361AT_COMPILE([input.o], [-c input.c])
362AT_COMPILE([main.o], [-c main.c])
363AT_COMPILE([input], [input.o main.o])
1154cced 364AT_PARSER_CHECK([./input], 0,
206fe6a5 365[[[@<:@],
5a08f1ce
AD
366]])
367
368AT_CLEANUP
e59adf8f
PE
369
370
371## ---------------------- ##
372## Typed symbol aliases. ##
373## ---------------------- ##
374
375AT_SETUP([Typed symbol aliases])
376
377# Bison 2.0 broke typed symbol aliases - ensure they work.
378
379AT_DATA_GRAMMAR([input.y],
380[[%union
381{
382 int val;
383};
384%token <val> MY_TOKEN "MY TOKEN"
385%type <val> exp
386%%
387exp: "MY TOKEN";
388%%
389]])
390
391AT_CHECK([bison -o input.c input.y])
392
393AT_CLEANUP
b50d2359
AD
394
395
396## --------- ##
397## Require. ##
398## --------- ##
399
400m4_define([AT_CHECK_REQUIRE],
401[AT_SETUP([Require $1])
402AT_DATA_GRAMMAR([input.y],
403[[%require "$1";
404%%
405empty_file:;
406]])
407AT_CHECK([bison -o input.c input.y], $2, [], ignore)
408AT_CLEANUP
409])
410
411AT_CHECK_REQUIRE(1.0, 0)
412AT_CHECK_REQUIRE(AT_PACKAGE_VERSION, 0)
413## FIXME: Some day augment this version number.
9b8a5ce0 414AT_CHECK_REQUIRE(100.0, 63)