]> git.saurik.com Git - bison.git/blame - tests/sets.at
package: install README and the like in docdir
[bison.git] / tests / sets.at
CommitLineData
ed8e1f68 1# Exercising Bison Grammar Sets. -*- Autotest -*-
6e30ede8 2
7d6bad19 3# Copyright (C) 2001-2002, 2005, 2007, 2009-2013 Free Software
1462fcee 4# Foundation, Inc.
ed8e1f68 5
f16b0819 6# This program is free software: you can redistribute it and/or modify
ed8e1f68 7# it under the terms of the GNU General Public License as published by
f16b0819
PE
8# the Free Software Foundation, either version 3 of the License, or
9# (at your option) any later version.
10#
ed8e1f68
AD
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
f16b0819 15#
ed8e1f68 16# You should have received a copy of the GNU General Public License
f16b0819 17# along with this program. If not, see <http://www.gnu.org/licenses/>.
ed8e1f68 18
1207eeac 19
318b76e9
AD
20# AT_EXTRACT_SETS(INPUT, OUTPUT)
21# ------------------------------
22# Extract the information about the grammar sets from a bison
23# trace output (INPUT), and save it in OUTPUT.
24# And remember, there is no alternation in portable sed.
25m4_define([AT_EXTRACT_SETS],
26[AT_DATA([extract.sed],
27[[#n
28/^NULLABLE$/ {
1207eeac 29 :null
318b76e9
AD
30 p
31 n
5cd907c4 32 /^ *$/ !b null
318b76e9
AD
33}
34/^FIRSTS$/ {
35 :firsts
36 p
37 n
5cd907c4 38 /^ *$/ !b firsts
318b76e9
AD
39}
40/^FDERIVES$/ {
1207eeac 41 :fderiv
318b76e9
AD
42 p
43 n
5cd907c4 44 /^ *$/ !b fderiv
318b76e9
AD
45}
46/^DERIVES$/ {
1207eeac 47 :deriv
318b76e9
AD
48 p
49 n
5cd907c4 50 /^ *$/ !b deriv
318b76e9
AD
51}
52]])
53AT_CHECK([sed -f extract.sed $1], 0, [stdout])
54AT_CHECK([mv stdout $2])
55])
56
57
58
ed8e1f68
AD
59AT_BANNER([[Grammar Sets (Firsts etc.).]])
60
61
62## ---------- ##
63## Nullable. ##
64## ---------- ##
65
66AT_SETUP([Nullable])
67
68# At some point, nullable had been smoking grass, and managed to say:
69#
70# Entering set_nullable
71# NULLABLE
72# 'e': yes
73# (null): no
74# ...
75
76AT_DATA([[input.y]],
77[[%%
78e: 'e' | /* Nothing */;
79]])
80
da730230 81AT_BISON_CHECK([[--trace=sets input.y]], [], [], [stderr])
318b76e9
AD
82AT_EXTRACT_SETS([stderr], [sets])
83AT_CHECK([[cat sets]], [],
84[[DERIVES
5cd907c4
AD
85 $accept derives
86 0 e $end
87 e derives
88 1 'e'
8b807f11 89 2 %empty
ed8e1f68 90NULLABLE
5cd907c4
AD
91 $accept: no
92 e: yes
ed8e1f68 93FIRSTS
5cd907c4
AD
94 $accept firsts
95 $accept
96 e
97 e firsts
98 e
ed8e1f68 99FDERIVES
5cd907c4
AD
100 $accept derives
101 0 e $end
102 1 'e'
8b807f11 103 2 %empty
5cd907c4
AD
104 e derives
105 1 'e'
8b807f11 106 2 %empty
ed8e1f68
AD
107]])
108
109AT_CLEANUP
110
111
112## ---------------- ##
113## Broken Closure. ##
114## ---------------- ##
115
4c9b8f13 116# TC was once broken during a massive 'simplification' of the code.
ed8e1f68
AD
117# It resulted in bison dumping core on the following grammar (the
118# computation of FIRSTS uses TC). It managed to produce a pretty
119# exotic closure:
120#
121# TC: Input
122#
123# 01234567
124# +--------+
125# 0| 1 |
126# 1| 1 |
127# 2| 1 |
128# 3| 1 |
129# 4| 1 |
130# 5| 1 |
131# 6| 1|
132# 7| |
133# +--------+
134#
135# TC: Output
136#
137# 01234567
138# +--------+
139# 0| 1 |
140# 1| 111 |
141# 2| 111 |
142# 3| 1111 |
143# 4| 111 1 |
144# 5| 111 1 |
145# 6| 111 1|
146# 7| 111 |
147# +--------+
148#
149# instead of that below.
150
151AT_SETUP([Broken Closure])
152
153AT_DATA([input.y],
154[[%%
e5352bc7
AD
155a: b;
156b: c;
157c: d;
158d: e;
159e: f;
160f: g;
161g: h;
162h: 'h';
ed8e1f68
AD
163]])
164
da730230 165AT_BISON_CHECK([[--trace=sets input.y]], [], [], [stderr])
30171f79 166
5cd907c4 167AT_CHECK([[sed -n 's/[ ]*$//;/^RTC: Firsts Output BEGIN/,/^RTC: Firsts Output END/p' stderr]], [],
1565b720 168[[RTC: Firsts Output BEGIN
30171f79
AD
169
170 012345678
171 .---------.
65ccf9fc
AD
172 0|111111111|
173 1| 11111111|
174 2| 1111111|
175 3| 111111|
176 4| 11111|
177 5| 1111|
178 6| 111|
179 7| 11|
180 8| 1|
30171f79 181 `---------'
1565b720 182RTC: Firsts Output END
ed8e1f68
AD
183]])
184
185AT_CLEANUP
318b76e9
AD
186
187
188
189## -------- ##
190## Firsts. ##
191## -------- ##
192
193AT_SETUP([Firsts])
194
195AT_DATA([input.y],
196[[%nonassoc '<' '>'
197%left '+' '-'
198%right '^' '='
199%%
200exp:
201 exp '<' exp
202 | exp '>' exp
203 | exp '+' exp
204 | exp '-' exp
205 | exp '^' exp
206 | exp '=' exp
207 | "exp"
208 ;
209]])
210
da730230 211AT_BISON_CHECK([[--trace=sets input.y]], [], [], [stderr])
318b76e9
AD
212AT_EXTRACT_SETS([stderr], [sets])
213AT_CHECK([[cat sets]], [],
214[[DERIVES
5cd907c4
AD
215 $accept derives
216 0 exp $end
217 exp derives
218 1 exp '<' exp
219 2 exp '>' exp
220 3 exp '+' exp
221 4 exp '-' exp
222 5 exp '^' exp
223 6 exp '=' exp
224 7 "exp"
318b76e9 225NULLABLE
5cd907c4
AD
226 $accept: no
227 exp: no
318b76e9 228FIRSTS
5cd907c4
AD
229 $accept firsts
230 $accept
231 exp
232 exp firsts
233 exp
318b76e9 234FDERIVES
5cd907c4
AD
235 $accept derives
236 0 exp $end
237 1 exp '<' exp
238 2 exp '>' exp
239 3 exp '+' exp
240 4 exp '-' exp
241 5 exp '^' exp
242 6 exp '=' exp
243 7 "exp"
244 exp derives
245 1 exp '<' exp
246 2 exp '>' exp
247 3 exp '+' exp
248 4 exp '-' exp
249 5 exp '^' exp
250 6 exp '=' exp
251 7 "exp"
318b76e9
AD
252]])
253
254AT_CLEANUP
317fce92
AD
255
256
257
258
259## -------- ##
260## Accept. ##
261## -------- ##
262
263# In some weird cases Bison could compute an incorrect final state
264# number. This happens only if the $end token is used in the user
265# grammar, which is a very suspicious accidental feature introduced as
4c9b8f13 266# a side effect of allowing the user to name $end using '%token END 0
317fce92
AD
267# "end of file"'.
268
269AT_SETUP([Accept])
270
271AT_DATA([input.y],
272[[%token END 0
273%%
274input:
275 'a'
276| '(' input ')'
277| '(' error END
278;
279]])
280
da730230 281AT_BISON_CHECK([[-v -o input.c input.y]])
317fce92
AD
282
283# Get the final state in the parser.
0eca5a39 284AT_CHECK([[sed -n 's/.*define YYFINAL *\([0-9][0-9]*\)/final state \1/p' input.c]],
317fce92
AD
285 0, [stdout])
286mv stdout expout
287
288# Get the final state in the report, from the "accept" action..
289AT_CHECK([sed -n '
d42fe46e 290 /^State \(.*\)/{
5cd907c4
AD
291 s//final state \1/
292 x
293 }
294 / accept/{
295 x
296 p
297 q
298 }
299 ' input.output],
300 0, [expout])
317fce92
AD
301
302AT_CLEANUP