1 # Exercising Bison on conflicts. -*- Autotest -*-
2 # Copyright (C) 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([[Conflicts.]])
22 ## ---------------- ##
24 ## ---------------- ##
26 # I once hacked Bison in such a way that it lost its reductions on the
27 # initial state (because it was confusing it with the last state). It
28 # took me a while to strip down my failures to this simple case. So
29 # make sure it finds the s/r conflict below.
31 AT_SETUP([S/R in initial])
37 e: 'e' | /* Nothing. */;
40 AT_CHECK([bison input.y -o input.c])
44 ## ------------------- ##
45 ## %nonassoc and eof. ##
46 ## ------------------- ##
48 AT_SETUP([%nonassoc and eof])
54 /* We don't need a perfect malloc for these tests. */
62 #define YYERROR_VERBOSE 1
64 yyerror (const char *msg)
66 fprintf (stderr, "%s\n", msg);
70 /* The current argument. */
71 static const char *input = NULL;
76 /* No token stands for end of file. */
94 main (int argc, const char *argv[])
102 # Specify the output files to avoid problems on different file systems.
103 AT_CHECK([bison input.y -o input.c])
104 AT_CHECK([$CC $CFLAGS $CPPFLAGS input.c -o input], 0, [], [ignore])
106 AT_CHECK([./input '0<0'])
107 # FIXME: This is an actual bug, but a new one, in the sense that
108 # no one has ever spotted it! The messages are *wrong*: there should
109 # be nothing there, it should be expected eof.
110 AT_CHECK([./input '0<0<0'], [1], [],
111 [parse error, unexpected '<', expecting '<' or '>'
114 AT_CHECK([./input '0>0'])
115 AT_CHECK([./input '0>0>0'], [1], [],
116 [parse error, unexpected '>', expecting '<' or '>'
119 AT_CHECK([./input '0<0>0'], [1], [],
120 [parse error, unexpected '>', expecting '<' or '>'
127 ## ------------------------- ##
128 ## Unresolved SR Conflicts. ##
129 ## ------------------------- ##
131 AT_SETUP([Unresolved SR Conflicts])
136 exp: exp OP exp | NUM;
139 AT_CHECK([bison input.y -o input.c -v], 0, [],
140 [input.y contains 1 shift/reduce conflict.
143 # Check the contents of the report.
144 AT_CHECK([cat input.output], [],
145 [[State 5 contains 1 shift/reduce conflict.
152 1 3 exp -> exp OP exp
156 Terminals, with rules where they appear
164 Nonterminals, with rules where they appear
169 on left: 1 2, on right: 0 1
174 $axiom -> . exp $ (rule 0)
176 NUM shift, and go to state 1
184 exp -> NUM . (rule 2)
186 $default reduce using rule 2 (exp)
192 $axiom -> exp . $ (rule 0)
193 exp -> exp . OP exp (rule 1)
195 $ shift, and go to state 3
196 OP shift, and go to state 4
202 $axiom -> exp $ . (rule 0)
209 exp -> exp OP . exp (rule 1)
211 NUM shift, and go to state 1
219 exp -> exp . OP exp (rule 1)
220 exp -> exp OP exp . (rule 1)
222 OP shift, and go to state 4
224 OP [reduce using rule 1 (exp)]
225 $default reduce using rule 1 (exp)
234 ## --------------------- ##
235 ## Solved SR Conflicts. ##
236 ## --------------------- ##
238 AT_SETUP([Solved SR Conflicts])
244 exp: exp OP exp | NUM;
247 AT_CHECK([bison input.y -o input.c -v], 0, [], [])
249 # Check the contents of the report.
250 AT_CHECK([cat input.output], [],
251 [[Conflict in state 5 between rule 2 and token OP resolved as shift.
258 1 4 exp -> exp OP exp
262 Terminals, with rules where they appear
270 Nonterminals, with rules where they appear
275 on left: 1 2, on right: 0 1
280 $axiom -> . exp $ (rule 0)
282 NUM shift, and go to state 1
290 exp -> NUM . (rule 2)
292 $default reduce using rule 2 (exp)
298 $axiom -> exp . $ (rule 0)
299 exp -> exp . OP exp (rule 1)
301 $ shift, and go to state 3
302 OP shift, and go to state 4
308 $axiom -> exp $ . (rule 0)
315 exp -> exp OP . exp (rule 1)
317 NUM shift, and go to state 1
325 exp -> exp . OP exp (rule 1)
326 exp -> exp OP exp . (rule 1)
328 OP shift, and go to state 4
330 $default reduce using rule 1 (exp)
341 ## -------------------- ##
342 ## %expect not enough. ##
343 ## -------------------- ##
345 AT_SETUP([%expect not enough])
351 exp: exp OP exp | NUM;
354 AT_CHECK([bison input.y -o input.c], 1, [],
355 [input.y contains 1 shift/reduce conflict.
356 expected 0 shift/reduce conflicts
361 ## --------------- ##
363 ## --------------- ##
365 AT_SETUP([%expect right])
371 exp: exp OP exp | NUM;
374 AT_CHECK([bison input.y -o input.c], 0)
378 ## ------------------ ##
379 ## %expect too much. ##
380 ## ------------------ ##
382 AT_SETUP([%expect too much])
388 exp: exp OP exp | NUM;
391 AT_CHECK([bison input.y -o input.c], 1, [],
392 [input.y contains 1 shift/reduce conflict.
393 expected 2 shift/reduce conflicts