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