]> git.saurik.com Git - bison.git/blob - tests/sets.at
* src/gram.c (ritem_print): Be sure to subtract 1 when displaying
[bison.git] / tests / sets.at
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
19 AT_BANNER([[Grammar Sets (Firsts etc.).]])
20
21
22 ## ---------- ##
23 ## Nullable. ##
24 ## ---------- ##
25
26 AT_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
36 AT_DATA([[input.y]],
37 [[%%
38 e: 'e' | /* Nothing */;
39 ]])
40
41 AT_CHECK([[bison --trace input.y]], [], [], [stderr])
42
43 AT_CHECK([[sed 's/[ ]*$//' stderr]], [],
44 [[RITEM
45 e $ (rule 0)
46 'e' (rule 1)
47 (rule 2)
48
49
50 DERIVES
51 $axiom derives
52 1: e $ (rule 0)
53 e derives
54 2: 'e' (rule 1)
55 3: (rule 2)
56
57
58 Entering set_nullable
59 NULLABLE
60 $axiom: no
61 e: yes
62
63
64 TC: Input BEGIN
65
66 01
67 .--.
68 0| 1|
69 1| |
70 `--'
71 TC: Input END
72
73 TC: Output BEGIN
74
75 01
76 .--.
77 0| 1|
78 1| |
79 `--'
80 TC: Output END
81
82 FIRSTS
83 $axiom firsts
84 4 ($axiom)
85 5 (e)
86 e firsts
87 5 (e)
88
89
90 FDERIVES
91 $axiom derives
92 0: e $
93 1: 'e'
94 2:
95 e derives
96 1: 'e'
97 2:
98
99
100 Processing state 0 (reached by $)
101 Closure: input
102
103
104 Closure: output
105 0: . e $ (rule 0)
106 3: . 'e' (rule 1)
107 5: . (rule 2)
108
109
110 Entering new_itemsets, state = 0
111 Entering append_states, state = 0
112 Entering get_state, state = 0, symbol = 3 ('e')
113 Entering new_state, state = 0, symbol = 3 ('e')
114 Exiting get_state => 1
115 Entering get_state, state = 0, symbol = 5 (e)
116 Entering new_state, state = 0, symbol = 5 (e)
117 Exiting get_state => 2
118 Processing state 1 (reached by 'e')
119 Closure: input
120 4: . (rule 1)
121
122
123 Closure: output
124 4: . (rule 1)
125
126
127 Entering new_itemsets, state = 1
128 Entering append_states, state = 1
129 Processing state 2 (reached by e)
130 Closure: input
131 1: . $ (rule 0)
132
133
134 Closure: output
135 1: . $ (rule 0)
136
137
138 Entering new_itemsets, state = 2
139 Entering append_states, state = 2
140 Entering get_state, state = 2, symbol = 0 ($)
141 Entering new_state, state = 2, symbol = 0 ($)
142 Exiting get_state => 3
143 Processing state 3 (reached by $)
144 Closure: input
145 2: . (rule 0)
146
147
148 Closure: output
149 2: . (rule 0)
150
151
152 Entering new_itemsets, state = 3
153 Entering append_states, state = 3
154 transpose: input
155 0:
156
157 transpose: output
158 0:
159
160 Lookaheads: BEGIN
161 State 0: 0 lookaheads
162 State 1: 0 lookaheads
163 State 2: 0 lookaheads
164 State 3: 0 lookaheads
165 Lookaheads: END
166 ]])
167
168 AT_CLEANUP
169
170
171 ## ---------------- ##
172 ## Broken Closure. ##
173 ## ---------------- ##
174
175 # TC was once broken during a massive `simplification' of the code.
176 # It resulted in bison dumping core on the following grammar (the
177 # computation of FIRSTS uses TC). It managed to produce a pretty
178 # exotic closure:
179 #
180 # TC: Input
181 #
182 # 01234567
183 # +--------+
184 # 0| 1 |
185 # 1| 1 |
186 # 2| 1 |
187 # 3| 1 |
188 # 4| 1 |
189 # 5| 1 |
190 # 6| 1|
191 # 7| |
192 # +--------+
193 #
194 # TC: Output
195 #
196 # 01234567
197 # +--------+
198 # 0| 1 |
199 # 1| 111 |
200 # 2| 111 |
201 # 3| 1111 |
202 # 4| 111 1 |
203 # 5| 111 1 |
204 # 6| 111 1|
205 # 7| 111 |
206 # +--------+
207 #
208 # instead of that below.
209
210 AT_SETUP([Broken Closure])
211
212 AT_DATA([input.y],
213 [[%%
214 a: b
215 b: c
216 c: d
217 d: e
218 e: f
219 f: g
220 g: h
221 h: 'h'
222 ]])
223
224 AT_CHECK([[bison --trace input.y]], [], [], [stderr])
225
226 AT_CHECK([[sed -n 's/[ ]*$//;/^TC: Output BEGIN/,/^TC: Output END/p' stderr]], [],
227 [[TC: Output BEGIN
228
229 012345678
230 .---------.
231 0| 11111111|
232 1| 1111111|
233 2| 111111|
234 3| 11111|
235 4| 1111|
236 5| 111|
237 6| 11|
238 7| 1|
239 8| |
240 `---------'
241 TC: Output END
242 ]])
243
244 AT_CLEANUP