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