1 # Checking skeleton support. -*- Autotest -*-
2 # Copyright (C) 2007, 2009-2010 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 3 of the License, or
7 # (at your option) any later version.
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, see <http://www.gnu.org/licenses/>.
17 AT_BANNER([[Skeleton Support.]])
19 ## ------------------------------ ##
20 ## Relative skeleton file names. ##
21 ## ------------------------------ ##
23 AT_SETUP([[Relative skeleton file names]])
25 AT_CHECK([[mkdir tmp]])
27 AT_DATA([[tmp/skel.c]],
28 [[m4@&t@_divert_push(0)d@&t@nl
29 @output(b4_parser_file_name@)d@&t@nl
30 b4_percent_define_get([[test]])
35 [[m4@&t@_divert_push(0)d@&t@nl
36 @output(b4_parser_file_name@)d@&t@nl
37 b4_percent_define_get([[test]]) -- Local
41 AT_DATA([[tmp/input-gram.y]],
42 [[%skeleton "./skel.c"
43 %define test "Hello World"
48 AT_DATA([[input-gram.y]],
49 [[%skeleton "./skel.c"
50 %define test "Hello World"
55 AT_DATA([[tmp/input-cmd-line.y]],
56 [[%define test "Hello World"
61 AT_BISON_CHECK([[tmp/input-gram.y]])
62 AT_CHECK([[cat input-gram.tab.c]], [[0]],
66 AT_BISON_CHECK([[input-gram.y]])
67 AT_CHECK([[cat input-gram.tab.c]], [[0]],
68 [[Hello World -- Local
71 AT_BISON_CHECK([[--skeleton=tmp/skel.c tmp/input-cmd-line.y]])
72 AT_CHECK([[cat input-cmd-line.tab.c]], [[0]],
79 ## ------------------------------- ##
80 ## Installed skeleton file names. ##
81 ## ------------------------------- ##
83 AT_SETUP([[Installed skeleton file names]])
88 void yyerror (char const *msg);
102 yyerror (char const *msg)
104 fprintf (stderr, "%s\n", msg);
120 AT_DATA([[input-cmd-line.y]],
123 AT_DATA([[input-gram.y]],
124 [[%skeleton "yacc.c"]
127 AT_BISON_CHECK([[--skeleton=yacc.c -o input-cmd-line.c input-cmd-line.y]])
128 AT_COMPILE([[input-cmd-line]])
129 AT_PARSER_CHECK([[./input-cmd-line]], [[1]], [],
130 [[syntax error, unexpected 'a', expecting $end
133 AT_BISON_CHECK([[-o input-gram.c input-gram.y]])
134 AT_COMPILE([[input-gram]])
135 AT_PARSER_CHECK([[./input-gram]], [[1]], [],
136 [[syntax error, unexpected 'a', expecting $end
144 ## ------------------------------------------------------ ##
145 ## %define Boolean variables: invalid skeleton defaults. ##
146 ## ------------------------------------------------------ ##
148 AT_SETUP([[%define Boolean variables: invalid skeleton defaults]])
151 [[b4_percent_define_default([[foo]], [[bogus value]])
152 b4_percent_define_flag_if([[foo]])
156 [[%skeleton "./skel.c"
161 AT_BISON_CHECK([[input.y]], [[1]], [[]],
162 [[<skeleton default value>: invalid value for %define Boolean variable `foo'
168 ## --------------------------------------------- ##
169 ## Complaining during macro argument expansion. ##
170 ## --------------------------------------------- ##
172 AT_SETUP([[Complaining during macro argument expansion]])
175 [[m4@&t@_define([foow], [b4_warn([[foow fubar]])])
176 m4@&t@_define([foowat], [b4_warn_at([[foow.y:2.3]],
177 [[foow.y:5.4]], [[foowat fubar]])])
178 m4@&t@_define([fooc], [b4_complain([[fooc fubar]])])
179 m4@&t@_define([foocat], [b4_complain_at([[fooc.y:1.1]],
180 [[fooc.y:10.6]], [[foocat fubar]])])
181 m4@&t@_define([foof], [b4_fatal([[foof fubar]])])
182 m4@&t@_if(foow, [1], [yes])
183 m4@&t@_if(foowat, [1], [yes])
184 m4@&t@_if(fooc, [1], [yes])
185 m4@&t@_if(foocat, [1], [yes])
186 m4@&t@_if(foof, [1], [yes])
189 AT_DATA([[input1.y]],
190 [[%skeleton "./skel1.c"
195 AT_BISON_CHECK([[input1.y]], [[1]], [[]],
196 [[input1.y: warning: foow fubar
197 foow.y:2.3-5.3: warning: foowat fubar
199 fooc.y:1.1-10.5: foocat fubar
200 input1.y: fatal error: foof fubar
204 [[m4@&t@_define([foofat], [b4_fatal_at([[foof.y:12.11]],
205 [[foof.y:100.123]], [[foofat fubar]])])
206 m4@&t@_if(foofat, [1], [yes])
209 AT_DATA([[input2.y]],
210 [[%skeleton "./skel2.c"
215 AT_BISON_CHECK([[input2.y]], [[1]], [[]],
216 [[foof.y:12.11-100.122: fatal error: foofat fubar
220 [[b4_complain_at(b4_percent_define_get_loc([[bogus]]), [[bad value]])
223 AT_DATA([[input3.y]],
224 [[%skeleton "./skel3.c"
229 AT_BISON_CHECK([[input3.y]], [[1]], [[]],
230 [[input3.y: fatal error: undefined %define variable `bogus' passed to b4_percent_define_get_loc
234 [[b4_warn_at(b4_percent_define_get_syncline([[bogus]]), [[bad value]])
237 AT_DATA([[input4.y]],
238 [[%skeleton "./skel4.c"
243 AT_BISON_CHECK([[input4.y]], [[1]], [[]],
244 [[input4.y: fatal error: undefined %define variable `bogus' passed to b4_percent_define_get_syncline
250 ## --------------------------------------- ##
251 ## Fatal errors make M4 exit immediately. ##
252 ## --------------------------------------- ##
254 AT_SETUP([[Fatal errors make M4 exit immediately]])
257 [[b4_complain([[non-fatal error]])
258 b4_fatal([[M4 should exit immediately here]])
259 m4@&t@_fatal([this should never be evaluated])
262 AT_DATA([[input1.y]],
263 [[%skeleton "./skel1.c"
268 AT_BISON_CHECK([[input1.y]], [[1]], [[]],
269 [[input1.y: non-fatal error
270 input1.y: fatal error: M4 should exit immediately here
274 [[b4_warn([[morning]])
275 b4_fatal_at([[foo.y:1.5]], [[foo.y:1.7]], [[M4 should exit immediately here]])
276 m4@&t@_fatal([this should never be evaluated])
279 AT_DATA([[input2.y]],
280 [[%skeleton "./skel2.c"
285 AT_BISON_CHECK([[input2.y]], [[1]], [[]],
286 [[input2.y: warning: morning
287 foo.y:1.5-6: fatal error: M4 should exit immediately here
293 ## ------------------------------------------------ ##
294 ## Fatal errors but M4 continues producing output. ##
295 ## ------------------------------------------------ ##
297 # At one time, if Bison encountered a fatal error during M4 processing,
298 # Bison failed to drain M4's output pipe. The result was a SIGPIPE.
299 # On some platforms, the default disposition for SIGPIPE is terminate,
300 # which was fine. On others, it's ignore, which caused M4 to report
301 # the broken pipe to the user, but we don't want to bother the user with
304 # There is a race condition somewhere. That is, before the associated
305 # fix, running this test group many times in a row would occasionally
306 # produce a pass among all the failures.
308 AT_SETUP([[Fatal errors but M4 continues producing output]])
310 AT_DATA([[gen-skel.pl]],
315 print "${M4}_divert_push(0)$DNL\n";
316 print '@output(@,@)', "\n";
317 (print "garbage"x10, "\n") for (1..1000);
318 print "${M4}_divert_pop(0)\n";
320 AT_CHECK([[perl gen-skel.pl > skel.c || exit 77]])
323 [[%skeleton "./skel.c"
328 AT_BISON_CHECK([[input.y]], [[1]], [[]],
329 [[input.y: fatal error: too many arguments for @output directive in skeleton