]> git.saurik.com Git - bison.git/blame_incremental - tests/sets.at
* doc/bison.texinfo (Debugging):
[bison.git] / tests / sets.at
... / ...
CommitLineData
1# Exercising Bison Grammar Sets. -*- Autotest -*-
2# Copyright 2001 Free Software Foundation, Inc.
3
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation; either version 2, or (at your option)
7# any later version.
8
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13
14# You should have received a copy of the GNU General Public License
15# along with this program; if not, write to the Free Software
16# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
17# 02111-1307, USA.
18
19AT_BANNER([[Grammar Sets (Firsts etc.).]])
20
21
22## ---------- ##
23## Nullable. ##
24## ---------- ##
25
26AT_SETUP([Nullable])
27
28# At some point, nullable had been smoking grass, and managed to say:
29#
30# Entering set_nullable
31# NULLABLE
32# 'e': yes
33# (null): no
34# ...
35
36AT_DATA([[input.y]],
37[[%%
38e: 'e' | /* Nothing */;
39]])
40
41AT_CHECK([[bison --trace input.y]], [], [], [stderr])
42
43AT_CHECK([[sed 's/[ ]*$//' stderr]], [],
44[[RITEM
45 e $ (rule 0)
46 'e' (rule 1)
47 (rule 2)
48
49
50DERIVES
51 $axiom derives
52 1: e $ (rule 0)
53 e derives
54 2: 'e' (rule 1)
55 3: (rule 2)
56
57
58Entering set_nullable
59NULLABLE
60 $axiom: no
61 e: yes
62
63
64TC: Input BEGIN
65
66 01
67 .--.
68 0| 1|
69 1| |
70 `--'
71TC: Input END
72
73TC: Output BEGIN
74
75 01
76 .--.
77 0| 1|
78 1| |
79 `--'
80TC: Output END
81
82FIRSTS
83 $axiom firsts
84 4 ($axiom)
85 5 (e)
86 e firsts
87 5 (e)
88
89
90FDERIVES
91 $axiom derives
92 0: e $
93 1: 'e'
94 2:
95 e derives
96 1: 'e'
97 2:
98
99
100Processing state 0 (reached by $)
101Closure: input
102
103
104Closure: output
105 0: . e $ (rule 0)
106 3: . 'e' (rule 1)
107 5: . (rule 2)
108
109
110Entering new_itemsets, state = 0
111Entering append_states, state = 0
112Entering get_state, state = 0, symbol = 3 ('e')
113Entering new_state, state = 0, symbol = 3 ('e')
114Exiting get_state => 1
115Entering get_state, state = 0, symbol = 5 (e)
116Entering new_state, state = 0, symbol = 5 (e)
117Exiting get_state => 2
118Processing state 1 (reached by 'e')
119Closure: input
120 4: . (rule 1)
121
122
123Closure: output
124 4: . (rule 1)
125
126
127Entering new_itemsets, state = 1
128Entering append_states, state = 1
129Processing state 2 (reached by e)
130Closure: input
131 1: . $ (rule 0)
132
133
134Closure: output
135 1: . $ (rule 0)
136
137
138Entering new_itemsets, state = 2
139Entering append_states, state = 2
140Entering get_state, state = 2, symbol = 0 ($)
141Entering new_state, state = 2, symbol = 0 ($)
142Exiting get_state => 3
143Processing state 3 (reached by $)
144Closure: input
145 2: . (rule 0)
146
147
148Closure: output
149 2: . (rule 0)
150
151
152Entering new_itemsets, state = 3
153Entering append_states, state = 3
154transpose: input
155 0:
156
157transpose: output
158 0:
159
160Lookaheads: BEGIN
161State 0: 1 lookaheads
162 on 0 ($) -> rule -4
163 on 1 (error) -> rule -4
164 on 2 ($undefined.) -> rule -4
165 on 3 ('e') -> rule -4
166State 1: 0 lookaheads
167State 2: 0 lookaheads
168State 3: 0 lookaheads
169Lookaheads: END
170]])
171
172AT_CLEANUP
173
174
175## ---------------- ##
176## Broken Closure. ##
177## ---------------- ##
178
179# TC was once broken during a massive `simplification' of the code.
180# It resulted in bison dumping core on the following grammar (the
181# computation of FIRSTS uses TC). It managed to produce a pretty
182# exotic closure:
183#
184# TC: Input
185#
186# 01234567
187# +--------+
188# 0| 1 |
189# 1| 1 |
190# 2| 1 |
191# 3| 1 |
192# 4| 1 |
193# 5| 1 |
194# 6| 1|
195# 7| |
196# +--------+
197#
198# TC: Output
199#
200# 01234567
201# +--------+
202# 0| 1 |
203# 1| 111 |
204# 2| 111 |
205# 3| 1111 |
206# 4| 111 1 |
207# 5| 111 1 |
208# 6| 111 1|
209# 7| 111 |
210# +--------+
211#
212# instead of that below.
213
214AT_SETUP([Broken Closure])
215
216AT_DATA([input.y],
217[[%%
218a: b
219b: c
220c: d
221d: e
222e: f
223f: g
224g: h
225h: 'h'
226]])
227
228AT_CHECK([[bison --trace input.y]], [], [], [stderr])
229
230AT_CHECK([[sed -n 's/[ ]*$//;/^TC: Output BEGIN/,/^TC: Output END/p' stderr]], [],
231[[TC: Output BEGIN
232
233 012345678
234 .---------.
235 0| 11111111|
236 1| 1111111|
237 2| 111111|
238 3| 11111|
239 4| 1111|
240 5| 111|
241 6| 11|
242 7| 1|
243 8| |
244 `---------'
245TC: Output END
246]])
247
248AT_CLEANUP