1 # Bison Regressions. -*- Autotest -*-
2 # Copyright (C) 2001, 2002 Free Software Foundation, Inc.
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2, or (at your option)
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 AT_BANNER([[Regression tests.]])
22 ## ------------------------- ##
23 ## Early token definitions. ##
24 ## ------------------------- ##
27 AT_SETUP([Early token definitions])
29 # Found in GCJ: they expect the tokens to be defined before the user
30 # prologue, so that they can use the token definitions in it.
32 AT_DATA_GRAMMAR([input.y],
34 void yyerror (const char *s);
44 # error "MY_TOKEN not defined."
53 AT_CHECK([bison -o input.c input.y])
54 AT_COMPILE([input.o], [-c input.c])
60 ## ---------------- ##
62 ## ---------------- ##
65 AT_SETUP([Braces parsing])
68 [[/* Bison used to swallow the character after `}'. */
71 exp: { tests = {{{{{{{{{{}}}}}}}}}}; };
75 AT_CHECK([bison -v -o input.c input.y])
77 AT_CHECK([grep 'tests = {{{{{{{{{{}}}}}}}}}};' input.c], 0, [ignore])
82 ## ------------------ ##
83 ## Duplicate string. ##
84 ## ------------------ ##
87 AT_SETUP([Duplicate string])
90 [[/* `Bison -v' used to dump core when two tokens are defined with the same
91 string, as LE and GE below. */
98 exp: '(' exp ')' | NUM ;
102 AT_CHECK([bison -v -o input.c input.y], 0, [],
103 [[input.y:6.8-14: warning: symbol `"<="' used more than once as a literal string
109 ## ------------------- ##
110 ## Rule Line Numbers. ##
111 ## ------------------- ##
113 AT_SETUP([Rule Line Numbers])
115 AT_KEYWORDS([report])
147 AT_CHECK([bison -o input.c -v input.y])
149 # Check the contents of the report.
150 AT_CHECK([cat input.output], [],
164 Terminals, with rules where they appear
173 Nonterminals, with rules where they appear
178 on left: 2 4, on right: 0
180 on left: 1, on right: 2
182 on left: 3, on right: 4
187 0 $accept: . expr $end
189 'a' shift, and go to state 1
191 $default reduce using rule 3 (@2)
201 $default reduce using rule 1 (@1)
208 0 $accept: expr . $end
210 $end shift, and go to state 5
217 'c' shift, and go to state 6
224 'b' shift, and go to state 7
229 0 $accept: expr $end .
238 $default reduce using rule 4 (expr)
245 $default reduce using rule 2 (expr)
252 ## ---------------------- ##
253 ## Mixing %token styles. ##
254 ## ---------------------- ##
257 AT_SETUP([Mixing %token styles])
259 # Taken from the documentation.
261 [[%token <operator> OR "||"
262 %token <operator> LE 134 "<="
269 AT_CHECK([bison -v -o input.c input.y])
275 ## ---------------- ##
276 ## Invalid inputs. ##
277 ## ---------------- ##
280 AT_SETUP([Invalid inputs])
292 AT_CHECK([bison input.y], [1], [],
293 [[input.y:2.1: invalid character: `?'
294 input.y:3.14: invalid character: `}'
295 input.y:4.1: invalid character: `%'
296 input.y:4.2: invalid character: `&'
297 input.y:5.1-17: invalid directive: `%a-does-not-exist'
298 input.y:6.1: invalid character: `%'
299 input.y:6.2: invalid character: `-'
300 input.y:7.1-8.0: missing `%}' at end of file
301 input.y:7.1-8.0: syntax error, unexpected "%{...%}"
308 ## ------------------- ##
309 ## Token definitions. ##
310 ## ------------------- ##
313 AT_SETUP([Token definitions])
315 # Bison managed, when fed with `%token 'f' "f"' to #define 'f'!
316 AT_DATA_GRAMMAR([input.y],
318 void yyerror (const char *s);
321 [%token MYEOF 0 "end of file"
330 AT_CHECK([bison -o input.c input.y])
331 AT_COMPILE([input.o], [-c input.c])
336 ## -------------------- ##
337 ## Characters Escapes. ##
338 ## -------------------- ##
341 AT_SETUP([Characters Escapes])
343 AT_DATA_GRAMMAR([input.y],
345 void yyerror (const char *s);
355 # Pacify font-lock-mode: "
357 AT_CHECK([bison -o input.c input.y])
358 AT_COMPILE([input.o], [-c input.c])
367 # The generation of the reduction was once wrong in Bison, and made it
368 # miss some reductions. In the following test case, the reduction on
369 # `undef_id_tok' in state 1 was missing. This is stripped down from
370 # the actual web2c.y.
372 AT_SETUP([Web2c Report])
374 AT_KEYWORDS([report])
377 [[%token undef_id_tok const_id_tok
379 %start CONST_DEC_PART
388 | CONST_DEC_LIST CONST_DEC
392 { } undef_id_tok '=' const_id_tok ';'
397 AT_CHECK([bison -v input.y])
398 AT_CHECK([cat input.output], 0,
401 0 $accept: CONST_DEC_PART $end
403 1 CONST_DEC_PART: CONST_DEC_LIST
405 2 CONST_DEC_LIST: CONST_DEC
406 3 | CONST_DEC_LIST CONST_DEC
410 5 CONST_DEC: @1 undef_id_tok '=' const_id_tok ';'
413 Terminals, with rules where they appear
423 Nonterminals, with rules where they appear
428 on left: 1, on right: 0
430 on left: 2 3, on right: 1 3
432 on left: 5, on right: 2 3
434 on left: 4, on right: 5
439 0 $accept: . CONST_DEC_PART $end
441 $default reduce using rule 4 (@1)
443 CONST_DEC_PART go to state 1
444 CONST_DEC_LIST go to state 2
445 CONST_DEC go to state 3
451 0 $accept: CONST_DEC_PART . $end
453 $end shift, and go to state 5
458 1 CONST_DEC_PART: CONST_DEC_LIST .
459 3 CONST_DEC_LIST: CONST_DEC_LIST . CONST_DEC
461 undef_id_tok reduce using rule 4 (@1)
462 $default reduce using rule 1 (CONST_DEC_PART)
464 CONST_DEC go to state 6
470 2 CONST_DEC_LIST: CONST_DEC .
472 $default reduce using rule 2 (CONST_DEC_LIST)
477 5 CONST_DEC: @1 . undef_id_tok '=' const_id_tok ';'
479 undef_id_tok shift, and go to state 7
484 0 $accept: CONST_DEC_PART $end .
491 3 CONST_DEC_LIST: CONST_DEC_LIST CONST_DEC .
493 $default reduce using rule 3 (CONST_DEC_LIST)
498 5 CONST_DEC: @1 undef_id_tok . '=' const_id_tok ';'
500 '=' shift, and go to state 8
505 5 CONST_DEC: @1 undef_id_tok '=' . const_id_tok ';'
507 const_id_tok shift, and go to state 9
512 5 CONST_DEC: @1 undef_id_tok '=' const_id_tok . ';'
514 ';' shift, and go to state 10
519 5 CONST_DEC: @1 undef_id_tok '=' const_id_tok ';' .
521 $default reduce using rule 5 (CONST_DEC)
527 ## --------------- ##
529 ## --------------- ##
531 # The generation of the mapping `state -> action' was once wrong in
532 # extremely specific situations. web2c.y exhibits this situation.
533 # Below is a stripped version of the grammar. It looks like one can
534 # simplify it further, but just don't: it is tuned to exhibit a bug,
535 # which disapears when applying sane grammar transformations.
537 # It used to be wrong on yydefact only:
539 # static const short yydefact[] =
541 # - 2, 0, 1, 0, 0, 2, 3, 2, 5, 4,
542 # + 2, 0, 1, 0, 0, 0, 3, 2, 5, 4,
546 # but let's check all the tables.
549 AT_SETUP([Web2c Actions])
551 AT_KEYWORDS([report])
555 statement: struct_stat;
556 struct_stat: /* empty. */ | if else;
557 if: "if" "const" "then" statement;
558 else: "else" statement;
562 AT_CHECK([bison -v -o input.c input.y])
564 # Check only the tables. We don't use --no-parser, because it is
565 # still to be implemented in the experimental branch of Bison.
566 [sed -n 's/ *$//;/^static const.*\[\] =/,/^}/p' input.c >tables.c]
568 AT_CHECK([[cat tables.c]], 0,
569 [[static const unsigned char yytranslate[] =
571 0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
572 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
573 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
574 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
575 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
576 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
577 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
578 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
579 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
580 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
581 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
582 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
583 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
584 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
585 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
586 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
587 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
588 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
589 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
590 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
591 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
592 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
593 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
594 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
595 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
596 2, 2, 2, 2, 2, 2, 1, 2, 3, 4,
599 static const unsigned char yyprhs[] =
603 static const yysigned_char yyrhs[] =
605 8, 0, -1, 9, -1, -1, 10, 11, -1, 3,
606 4, 5, 8, -1, 6, 8, -1
608 static const unsigned char yyrline[] =
612 static const char *const yytname[] =
614 "$end", "error", "$undefined", "\"if\"", "\"const\"", "\"then\"",
615 "\"else\"", "$accept", "statement", "struct_stat", "if", "else", 0
617 static const unsigned short yytoknum[] =
619 0, 256, 257, 258, 259, 260, 261
621 static const unsigned char yyr1[] =
623 0, 7, 8, 9, 9, 10, 11
625 static const unsigned char yyr2[] =
629 static const unsigned char yydefact[] =
631 3, 0, 0, 2, 0, 0, 1, 3, 4, 3,
634 static const yysigned_char yydefgoto[] =
638 static const yysigned_char yypact[] =
640 -2, -1, 4, -8, 0, 2, -8, -2, -8, -2,
643 static const yysigned_char yypgoto[] =
647 static const unsigned char yytable[] =
649 10, 1, 11, 5, 6, 0, 7, 9
651 static const yysigned_char yycheck[] =
653 7, 3, 9, 4, 0, -1, 6, 5
655 static const unsigned char yystos[] =
657 0, 3, 8, 9, 10, 4, 0, 6, 11, 5,