]>
Commit | Line | Data |
---|---|---|
67a25fed AD |
1 | # Process this -*- Autotest -*- file with autom4te. |
2 | ||
3 | # Macros for the GNU Bison Test suite. | |
7d424de1 | 4 | |
34136e65 | 5 | # Copyright (C) 2003-2012 Free Software Foundation, Inc. |
67a25fed | 6 | |
f16b0819 | 7 | # This program is free software: you can redistribute it and/or modify |
67a25fed | 8 | # it under the terms of the GNU General Public License as published by |
f16b0819 PE |
9 | # the Free Software Foundation, either version 3 of the License, or |
10 | # (at your option) any later version. | |
11 | # | |
67a25fed AD |
12 | # This program is distributed in the hope that it will be useful, |
13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | # GNU General Public License for more details. | |
f16b0819 | 16 | # |
67a25fed | 17 | # You should have received a copy of the GNU General Public License |
f16b0819 | 18 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
67a25fed | 19 | |
ce05140d | 20 | m4_version_prereq([2.58]) |
1f7a61ff | 21 | |
67a25fed | 22 | |
a122efad AD |
23 | # m4_null_if(VAL, IF-TRUE, IF-FALSE) |
24 | # ---------------------------------- | |
25 | # If VAL evaluates to empty or 0, run IF-TRUE, otherwise IF-FALSE. | |
26 | m4_define([m4_null_if], | |
27 | [m4_case(m4_quote($1), | |
28 | [0], [$2], | |
29 | [], [$2], | |
30 | [$3])]) | |
31 | ||
6617622c AD |
32 | ## ------------- ## |
33 | ## Basic tests. ## | |
34 | ## ------------- ## | |
35 | ||
36 | # AT_MATCHES_CHECK(FILE, PERL-REGEXP, COUNT) | |
37 | # ------------------------------------------ | |
38 | # Expect COUNT matches of the PERL-REGEXP in FILE. The file is | |
39 | # taken in "slurp" mode, i.e., one can match end-of-lines. | |
40 | m4_define([AT_MATCHES_CHECK], | |
41 | [AT_CHECK([perl -0777 -ne ' | |
42 | my $count = 0; | |
43 | s{$2}{ ++$count; "" }gem; | |
44 | printf "$count\n";' $1], [0], [$3 | |
45 | ])]) | |
46 | ||
47 | ||
5192fd5d AD |
48 | # AT_SAVE_SPECIAL_FILES / AT_RESTORE_SPECIAL_FILES |
49 | # ------------------------------------------------ | |
50 | # Don't interfere with caller's files. | |
51 | m4_divert_text([PREPARE_TESTS], | |
52 | [at_save_special_files () | |
53 | { | |
54 | for at_save_file in stderr experr expout | |
55 | do | |
1aa9fa82 AD |
56 | test ! -f at-bison-check-$at_save_file.bak || |
57 | as_fn_error 1 "fatal error: back-up on top of a back-up" | |
5192fd5d AD |
58 | test ! -f $at_save_file || mv $at_save_file at-bison-check-$at_save_file.bak |
59 | done | |
60 | } | |
61 | ||
62 | at_restore_special_files () | |
63 | { | |
64 | for at_save_file in stderr experr expout | |
65 | do | |
66 | test ! -f at-bison-check-$at_save_file.bak || | |
67 | mv at-bison-check-$at_save_file.bak $at_save_file | |
68 | done | |
69 | } | |
70 | ]) | |
71 | ||
72 | m4_define([AT_SAVE_SPECIAL_FILES], [at_save_special_files]) | |
73 | m4_define([AT_RESTORE_SPECIAL_FILES], [at_restore_special_files]) | |
74 | ||
75 | ||
76 | ||
67a25fed AD |
77 | ## ------------------------------- ## |
78 | ## Macros decoding Bison options. ## | |
79 | ## ------------------------------- ## | |
80 | ||
4f756f88 AD |
81 | # AT_LOC_PUSHDEF(FIRST-LINE, FIRST-COLUMN, LAST-LINE, LAST-COLUMN) |
82 | # ---------------------------------------------------------------- | |
83 | # Pushdef AT_LOC_(FIRST|LAST)_(LINE|COLUMN). | |
84 | m4_define([AT_LOC_PUSHDEF], | |
85 | [m4_pushdef([AT_LOC_FIRST_LINE], [AT_LOC.$1]) | |
86 | m4_pushdef([AT_LOC_FIRST_COLUMN], [AT_LOC.$2]) | |
87 | m4_pushdef([AT_LOC_LAST_LINE], [AT_LOC.$3]) | |
88 | m4_pushdef([AT_LOC_LAST_COLUMN], [AT_LOC.$4])]) | |
89 | ||
90 | # AT_LOC_POPDEF | |
91 | # ------------- | |
92 | # Popdef AT_LOC_(FIRST|LAST)_(LINE|COL). | |
93 | m4_define([AT_LOC_POPDEF], | |
94 | [m4_popdef([AT_LOC_FIRST_LINE]) | |
95 | m4_popdef([AT_LOC_FIRST_COLUMN]) | |
96 | m4_popdef([AT_LOC_LAST_LINE]) | |
97 | m4_popdef([AT_LOC_LAST_COLUMN])]) | |
98 | ||
99 | ||
67a25fed AD |
100 | |
101 | # AT_BISON_OPTION_PUSHDEFS([BISON-OPTIONS]) | |
102 | # ----------------------------------------- | |
103 | m4_define([AT_BISON_OPTION_PUSHDEFS], | |
a32a2d57 AD |
104 | [m4_divert_text([KILL], |
105 | [_AT_BISON_OPTION_PUSHDEFS($[1], $[2], [$1])])]) | |
67a25fed AD |
106 | |
107 | ||
108 | # _AT_BISON_OPTION_PUSHDEFS($1, $2, [BISON-OPTIONS]) | |
109 | # -------------------------------------------------- | |
110 | # This macro works around the impossibility to define macros | |
111 | # inside macros, because issuing `[$1]' is not possible in M4 :(. | |
417e31d2 | 112 | # This sucks hard, GNU M4 should really provide M5-like $$1. |
67a25fed AD |
113 | m4_define([_AT_BISON_OPTION_PUSHDEFS], |
114 | [m4_if([$1$2], $[1]$[2], [], | |
115 | [m4_fatal([$0: Invalid arguments: $@])])dnl | |
6c88b51e JD |
116 | m4_pushdef([AT_DEFINES_IF], |
117 | [m4_bmatch([$3], [%defines], [$1], [$2])]) | |
8f7e3cf9 | 118 | m4_pushdef([AT_SKEL_CC_IF], |
0e021770 | 119 | [m4_bmatch([$3], [%language "[Cc]\+\+"\|%skeleton "[a-z0-9]+\.cc"], [$1], [$2])]) |
d2060f06 JD |
120 | m4_pushdef([AT_SKEL_JAVA_IF], |
121 | [m4_bmatch([$3], [%language "[Jj][Aa][Vv][Aa]"\|%skeleton "[a-z0-9]+\.java"], [$1], [$2])]) | |
2d40532b AD |
122 | m4_pushdef([AT_LANG], |
123 | [AT_SKEL_JAVA_IF([java], | |
05a7b6ec | 124 | [AT_SKEL_CC_IF([c++], |
2d40532b | 125 | [c])])]) |
67a25fed | 126 | m4_pushdef([AT_GLR_IF], |
5f7f1e21 | 127 | [m4_bmatch([$3], [%glr-parser\|%skeleton "glr\..*"], [$1], [$2])]) |
0e021770 PE |
128 | m4_pushdef([AT_LALR1_CC_IF], |
129 | [AT_SKEL_CC_IF([AT_GLR_IF([$2], [$1])], [$2])]) | |
130 | m4_pushdef([AT_GLR_CC_IF], | |
131 | [AT_SKEL_CC_IF([AT_GLR_IF([$1], [$2])], [$2])]) | |
67a25fed AD |
132 | # Using yacc.c? |
133 | m4_pushdef([AT_YACC_IF], | |
0e021770 | 134 | [m4_bmatch([$3], [%language\|%glr-parser\|%skeleton], [$2], [$1])]) |
01b477c6 PB |
135 | m4_pushdef([AT_LEXPARAM_IF], |
136 | [m4_bmatch([$3], [%lex-param], [$1], [$2])]) | |
67a25fed AD |
137 | m4_pushdef([AT_LOCATION_IF], |
138 | [m4_bmatch([$3], [%locations], [$1], [$2])]) | |
24bb8c8c AD |
139 | m4_pushdef([AT_LOCATION_TYPE_IF], |
140 | [m4_bmatch([$3], [%define location_type], [$1], [$2])]) | |
141 | m4_pushdef([AT_PARAM_IF], | |
142 | [m4_bmatch([$3], [%parse-param], [$1], [$2])]) | |
67a25fed | 143 | m4_pushdef([AT_PURE_IF], |
d9df47b6 | 144 | [m4_bmatch([$3], [%define *api\.pure\|%pure-parser], |
cf499cff | 145 | [m4_bmatch([$3], [%define *api\.pure *"?false"?], [$2], [$1])], |
d9df47b6 | 146 | [$2])]) |
67a25fed | 147 | m4_pushdef([AT_PURE_AND_LOC_IF], |
d9df47b6 | 148 | [m4_bmatch([$3], [%locations], [AT_PURE_IF($@)], [$2])]) |
67a25fed AD |
149 | m4_pushdef([AT_GLR_OR_PARAM_IF], |
150 | [m4_bmatch([$3], [%glr-parser\|%parse-param], [$1], [$2])]) | |
aa08666d | 151 | m4_pushdef([AT_NAME_PREFIX], |
230a3db4 AD |
152 | [m4_bmatch([$3], [\(%define api\.prefix\|%name-prefix\) ".*"], |
153 | [m4_bregexp([$3], [\(%define api\.prefix\|%name-prefix\) "\([^""]*\)"], [\2])], | |
5cf61e93 | 154 | [yy])]) |
417e31d2 | 155 | m4_pushdef([AT_TOKEN_PREFIX], |
4c6622c2 AD |
156 | [m4_bmatch([$3], [%define api.tokens.prefix ".*"], |
157 | [m4_bregexp([$3], [%define api.tokens.prefix "\(.*\)"], [\1])])]) | |
837b7696 AD |
158 | m4_pushdef([AT_API_prefix], |
159 | [m4_bmatch([$3], [%define api\.prefix ".*"], | |
160 | [m4_bregexp([$3], [%define api\.prefix "\([^""]*\)"], [\1])], | |
161 | [yy])]) | |
4b3847c3 AD |
162 | m4_pushdef([AT_API_PREFIX], |
163 | [m4_toupper(AT_API_prefix)]) | |
67a25fed AD |
164 | # yyerror receives the location if %location & %pure & (%glr or %parse-param). |
165 | m4_pushdef([AT_YYERROR_ARG_LOC_IF], | |
166 | [AT_GLR_OR_PARAM_IF([AT_PURE_AND_LOC_IF([$1], [$2])], | |
e9690142 | 167 | [$2])]) |
67a25fed | 168 | # yyerror always sees the locations (when activated), except if |
94ebeba5 | 169 | # (yacc & pure & !param). FIXME: This is wrong. See the manual. |
67a25fed | 170 | m4_pushdef([AT_YYERROR_SEES_LOC_IF], |
7d596384 | 171 | [AT_LOCATION_IF([AT_YACC_IF([AT_PURE_IF([AT_PARAM_IF([$1], [$2])], |
e9690142 JD |
172 | [$1])], |
173 | [$1])], | |
174 | [$2])]) | |
67a25fed | 175 | |
d9df47b6 | 176 | # The interface is pure: either because %define api.pure, or because we |
67a25fed AD |
177 | # are using the C++ parsers. |
178 | m4_pushdef([AT_PURE_LEX_IF], | |
94ebeba5 | 179 | [AT_PURE_IF([$1], |
e9690142 | 180 | [AT_SKEL_CC_IF([$1], [$2])])]) |
67a25fed | 181 | |
0e16927b AD |
182 | m4_pushdef([AT_YYSTYPE], |
183 | [AT_SKEL_CC_IF([AT_NAME_PREFIX[::parser::semantic_type]], | |
4b3847c3 | 184 | [AT_API_PREFIX[STYPE]])]) |
0e16927b AD |
185 | m4_pushdef([AT_YYLTYPE], |
186 | [AT_SKEL_CC_IF([AT_NAME_PREFIX[::parser::location_type]], | |
4b3847c3 | 187 | [AT_API_PREFIX[LTYPE]])]) |
0e16927b AD |
188 | |
189 | ||
67a25fed | 190 | AT_PURE_LEX_IF( |
ebc3737e PE |
191 | [m4_pushdef([AT_LOC], [(*llocp)]) |
192 | m4_pushdef([AT_VAL], [(*lvalp)]) | |
230a3db4 | 193 | m4_pushdef([AT_YYLEX_FORMALS], |
297e263a | 194 | [AT_YYSTYPE *lvalp[]AT_LOCATION_IF([, AT_YYLTYPE *llocp])]) |
230a3db4 | 195 | m4_pushdef([AT_YYLEX_ARGS], |
e9690142 | 196 | [lvalp[]AT_LOCATION_IF([, llocp])]) |
67a25fed | 197 | m4_pushdef([AT_USE_LEX_ARGS], |
e9690142 | 198 | [(void) lvalp;AT_LOCATION_IF([(void) llocp])]) |
230a3db4 | 199 | m4_pushdef([AT_YYLEX_PRE_FORMALS], |
297e263a | 200 | [AT_YYLEX_FORMALS, ]) |
230a3db4 | 201 | m4_pushdef([AT_YYLEX_PRE_ARGS], |
297e263a | 202 | [AT_YYLEX_ARGS, ]) |
67a25fed | 203 | ], |
6c88b51e JD |
204 | [m4_pushdef([AT_LOC], [[(]AT_NAME_PREFIX[lloc)]]) |
205 | m4_pushdef([AT_VAL], [[(]AT_NAME_PREFIX[lval)]]) | |
230a3db4 AD |
206 | m4_pushdef([AT_YYLEX_FORMALS], [void]) |
207 | m4_pushdef([AT_YYLEX_ARGS], []) | |
67a25fed | 208 | m4_pushdef([AT_USE_LEX_ARGS], []) |
230a3db4 AD |
209 | m4_pushdef([AT_YYLEX_PRE_FORMALS], []) |
210 | m4_pushdef([AT_YYLEX_PRE_ARGS], []) | |
67a25fed | 211 | ]) |
4f756f88 AD |
212 | |
213 | # Handle the different types of location components. | |
214 | ||
215 | AT_SKEL_CC_IF( | |
216 | [AT_LOCATION_TYPE_IF( | |
49976d5c | 217 | [AT_LOC_PUSHDEF([first.l], [first.c], [last.l], [last.c])], |
4f756f88 AD |
218 | [AT_LOC_PUSHDEF([begin.line], [begin.column], [end.line], [end.column])])], |
219 | [AT_LOC_PUSHDEF([first_line], [first_column], [last_line], [last_column])]) | |
220 | ||
221 | ||
6130b755 | 222 | AT_GLR_IF([AT_KEYWORDS([glr])]) |
67a25fed AD |
223 | ])# _AT_BISON_OPTION_PUSHDEFS |
224 | ||
225 | ||
226 | # AT_BISON_OPTION_POPDEFS | |
227 | # ----------------------- | |
228 | m4_define([AT_BISON_OPTION_POPDEFS], | |
a32a2d57 | 229 | [m4_divert_text([KILL], |
230a3db4 AD |
230 | [m4_popdef([AT_YYLEX_PRE_ARGS]) |
231 | m4_popdef([AT_YYLEX_PRE_FORMALS]) | |
67a25fed | 232 | m4_popdef([AT_USE_LEX_ARGS]) |
230a3db4 AD |
233 | m4_popdef([AT_YYLEX_ARGS]) |
234 | m4_popdef([AT_YYLEX_FORMALS]) | |
0e16927b AD |
235 | m4_popdef([AT_YYLTYPE]) |
236 | m4_popdef([AT_YYSTYPE]) | |
67a25fed AD |
237 | m4_popdef([AT_VAL]) |
238 | m4_popdef([AT_LOC]) | |
239 | m4_popdef([AT_PURE_LEX_IF]) | |
240 | m4_popdef([AT_YYERROR_SEES_LOC_IF]) | |
241 | m4_popdef([AT_YYERROR_ARG_LOC_IF]) | |
4b3847c3 | 242 | m4_popdef([AT_API_PREFIX]) |
837b7696 | 243 | m4_popdef([AT_API_prefix]) |
aa08666d | 244 | m4_popdef([AT_NAME_PREFIX]) |
67a25fed AD |
245 | m4_popdef([AT_GLR_OR_PARAM_IF]) |
246 | m4_popdef([AT_PURE_AND_LOC_IF]) | |
24bb8c8c | 247 | m4_popdef([AT_LOCATION_TYPE_IF]) |
67a25fed AD |
248 | m4_popdef([AT_LOCATION_IF]) |
249 | m4_popdef([AT_PARAM_IF]) | |
01b477c6 | 250 | m4_popdef([AT_LEXPARAM_IF]) |
67a25fed AD |
251 | m4_popdef([AT_YACC_IF]) |
252 | m4_popdef([AT_GLR_IF]) | |
8f7e3cf9 | 253 | m4_popdef([AT_SKEL_CC_IF]) |
2d40532b | 254 | m4_popdef([AT_LANG]) |
d2060f06 | 255 | m4_popdef([AT_SKEL_JAVA_IF]) |
8f7e3cf9 | 256 | m4_popdef([AT_GLR_CC_IF]) |
67a25fed | 257 | m4_popdef([AT_LALR1_CC_IF]) |
6c88b51e | 258 | m4_popdef([AT_DEFINES_IF]) |
a32a2d57 | 259 | AT_LOC_POPDEF])dnl |
67a25fed AD |
260 | ])# AT_BISON_OPTION_POPDEFS |
261 | ||
262 | ||
263 | ||
264 | ## -------------------------- ## | |
265 | ## Generating Grammar Files. ## | |
266 | ## -------------------------- ## | |
267 | ||
6c88b51e | 268 | # AT_DATA_SOURCE_PROLOGUE |
67a25fed | 269 | # ------------------------ |
6c88b51e | 270 | # The prologue that should be included in any source code that is |
67a25fed | 271 | # meant to be compiled. |
6c88b51e JD |
272 | m4_define([AT_DATA_SOURCE_PROLOGUE], |
273 | [[#include <config.h> | |
231ed89a PE |
274 | /* We don't need perfect functions for these tests. */ |
275 | #undef malloc | |
276 | #undef memcmp | |
277 | #undef realloc | |
6c88b51e JD |
278 | ]]) |
279 | ||
280 | # AT_DATA_GRAMMAR_PROLOGUE | |
281 | # ------------------------ | |
282 | # The prologue that should be included in any grammar which parser is | |
283 | # meant to be compiled. | |
284 | m4_define([AT_DATA_GRAMMAR_PROLOGUE], | |
285 | [[%code top { | |
286 | ]AT_DATA_SOURCE_PROLOGUE[]dnl | |
287 | [} | |
288 | ]]) | |
67a25fed | 289 | |
6c88b51e JD |
290 | # AT_DATA_SOURCE(NAME, CONTENT) |
291 | # ----------------------------- | |
292 | # Generate the file NAME, which CONTENT is preceded by | |
293 | # AT_DATA_SOURCE_PROLOGUE. | |
294 | m4_define([AT_DATA_SOURCE], | |
295 | [AT_DATA([$1], | |
296 | [AT_DATA_SOURCE_PROLOGUE | |
297 | $2]) | |
298 | ]) | |
67a25fed AD |
299 | |
300 | # AT_DATA_GRAMMAR(NAME, CONTENT) | |
301 | # ------------------------------ | |
302 | # Generate the file NAME, which CONTENT is preceded by | |
303 | # AT_DATA_GRAMMAR_PROLOGUE. | |
304 | m4_define([AT_DATA_GRAMMAR], | |
305 | [AT_DATA([$1], | |
306 | [AT_DATA_GRAMMAR_PROLOGUE | |
307 | $2]) | |
308 | ]) | |
309 | ||
230a3db4 | 310 | # AT_YYLEX_PROTOTYPE |
55f48c48 AD |
311 | # AT_YYLEX_DECLARE_EXTERN |
312 | # AT_YYLEX_DECLARE | |
95361618 AD |
313 | # AT_YYLEX_DEFINE([INPUT], [ACTION]) |
314 | # ---------------------------------- | |
315 | # INPUT can be empty, or in double quotes, or a list (in braces). | |
316 | # ACTION may compute yylval for instance, using "res" as token type, | |
317 | # and "toknum" as the number of calls to yylex (starting at 0). | |
230a3db4 | 318 | m4_define([AT_YYLEX_PROTOTYPE], |
837b7696 | 319 | [int AT_NAME_PREFIX[]lex (]AT_YYLEX_FORMALS[)[]dnl |
230a3db4 AD |
320 | ]) |
321 | ||
55f48c48 | 322 | m4_define([AT_YYLEX_DECLARE_EXTERN], |
230a3db4 | 323 | [AT_YYLEX_PROTOTYPE;dnl |
55f48c48 AD |
324 | ]) |
325 | ||
326 | m4_define([AT_YYLEX_DECLARE], | |
327 | [static AT_YYLEX_DECLARE_EXTERN[]dnl | |
328 | ]) | |
329 | ||
330 | m4_define([AT_YYLEX_DEFINE], | |
77519a7d | 331 | [[#include <assert.h> |
230a3db4 AD |
332 | static |
333 | ]AT_YYLEX_PROTOTYPE[ | |
55f48c48 | 334 | { |
95361618 AD |
335 | ]m4_bmatch([$1], [^\(".*"\)?$], |
336 | [[static char const input[] = ]m4_default([$1], [""])], | |
337 | [[static int const input[] = ]$1])[; | |
55f48c48 AD |
338 | static size_t toknum = 0; |
339 | int res; | |
0e16927b | 340 | ]AT_USE_LEX_ARGS[; |
55e075f2 | 341 | assert (toknum < sizeof input / sizeof input[0]); |
55f48c48 | 342 | res = input[toknum++]; |
0e16927b AD |
343 | ]$2[;]AT_LOCATION_IF([[ |
344 | ]AT_LOC_FIRST_LINE[ = ]AT_LOC_LAST_LINE[ = 1; | |
345 | ]AT_LOC_FIRST_COLUMN[ = ]AT_LOC_LAST_COLUMN[ = toknum;]])[ | |
55f48c48 AD |
346 | return res; |
347 | }]dnl | |
348 | ]) | |
349 | ||
6d559547 | 350 | # AT_YYERROR_PROTOTYPE |
55f48c48 AD |
351 | # AT_YYERROR_DECLARE_EXTERN |
352 | # AT_YYERROR_DECLARE | |
353 | # AT_YYERROR_DEFINE | |
354 | # ------------------------- | |
6d559547 | 355 | # Must be called inside a AT_BISON_OPTION_PUSHDEFS/POPDEFS pair. |
230a3db4 AD |
356 | m4_define([AT_YYERROR_FORMALS], |
357 | [m4_case(AT_LANG, | |
ad60e80f | 358 | [c], [AT_YYERROR_ARG_LOC_IF([AT_YYLTYPE *llocp, ])[const char *msg]])[]dnl |
230a3db4 AD |
359 | ]) |
360 | ||
6d559547 AD |
361 | m4_define([AT_YYERROR_PROTOTYPE], |
362 | [m4_case(AT_LANG, | |
837b7696 | 363 | [c], [[void ]AT_NAME_PREFIX[error (]AT_YYERROR_FORMALS[)]])[]dnl |
6d559547 AD |
364 | ]) |
365 | ||
55f48c48 | 366 | m4_define([AT_YYERROR_DECLARE_EXTERN], |
05a7b6ec | 367 | [m4_case(AT_LANG, |
6d559547 | 368 | [c], [AT_YYERROR_PROTOTYPE;])[]dnl |
55f48c48 AD |
369 | ]) |
370 | ||
371 | m4_define([AT_YYERROR_DECLARE], | |
05a7b6ec AD |
372 | [m4_case(AT_LANG, |
373 | [c], [static AT_YYERROR_DECLARE_EXTERN])[]dnl | |
55f48c48 AD |
374 | ]) |
375 | ||
376 | m4_define([AT_YYERROR_DEFINE], | |
05a7b6ec AD |
377 | [m4_case(AT_LANG, |
378 | [c], [[#include <stdio.h> | |
74909941 | 379 | /* A C error reporting function. */ |
6d559547 AD |
380 | static |
381 | ]AT_YYERROR_PROTOTYPE[ | |
55f48c48 | 382 | { |
74909941 AD |
383 | ]AT_YYERROR_SEES_LOC_IF([[ |
384 | fprintf (stderr, "%d.%d", | |
385 | ]AT_LOC_FIRST_LINE[, ]AT_LOC_FIRST_COLUMN[); | |
386 | if (]AT_LOC_FIRST_LINE[ != ]AT_LOC_LAST_LINE[) | |
387 | fprintf (stderr, "-%d.%d", | |
388 | ]AT_LOC_LAST_LINE[, ]AT_LOC_LAST_COLUMN[ - 1); | |
389 | else if (]AT_LOC_FIRST_COLUMN[ != ]AT_LOC_LAST_COLUMN[ - 1) | |
390 | fprintf (stderr, "-%d", | |
391 | ]AT_LOC_LAST_COLUMN[ - 1); | |
392 | fprintf (stderr, ": ");]])[ | |
55f48c48 | 393 | fprintf (stderr, "%s\n", msg); |
05a7b6ec | 394 | }]], |
74909941 AD |
395 | [c++], [[/* A C++ error reporting function. */ |
396 | void | |
6cf3716c AD |
397 | ]AT_NAME_PREFIX[::parser::error (]AT_LOCATION_IF([[const location_type& l, ]])[const std::string& m) |
398 | { std::cerr << ]AT_LOCATION_IF([l << ": " << ])[m << std::endl; | |
05a7b6ec | 399 | }]], |
6d559547 | 400 | [java], [AT_LOCATION_IF([[public void yyerror (Calc.Location l, String s) |
6cf3716c | 401 | { |
6d559547 AD |
402 | if (l == null) |
403 | System.err.println (s); | |
404 | else | |
405 | System.err.println (l + ": " + s); | |
406 | } | |
407 | ]], [[ | |
408 | public void yyerror (String s) | |
409 | { | |
410 | System.err.println (s); | |
55f48c48 AD |
411 | }]])])dnl |
412 | ]) | |
413 | ||
55f48c48 AD |
414 | |
415 | ## --------------- ## | |
416 | ## Running Bison. ## | |
417 | ## --------------- ## | |
418 | ||
da730230 JD |
419 | # AT_BISON_CHECK(BISON_ARGS, [OTHER_AT_CHECK_ARGS]) |
420 | # ------------------------------------------------- | |
a122efad AD |
421 | # High-level routine that may call bison several times, under different |
422 | # conditions. | |
423 | # | |
c39014ae JD |
424 | # Check Bison by invoking `bison BISON_ARGS'. BISON_ARGS should not contain |
425 | # shell constructs (such as redirection or pipes) that would prevent | |
426 | # appending additional command-line arguments for bison. OTHER_AT_CHECK_ARGS | |
427 | # are the usual remaining arguments to AT_CHECK: STATUS, STDOUT, etc. | |
da730230 JD |
428 | # |
429 | # This macro or AT_BISON_CHECK_NO_XML should always be used whenever invoking | |
430 | # Bison in the test suite. For now it ensures that: | |
431 | # | |
432 | # 1. Valgrind doesn't report reachable memory when Bison is expected to have | |
433 | # a non-zero exit status since Bison doesn't always try to free all memory | |
434 | # in that case. | |
435 | # | |
436 | # 2. In the case of maintainer-xml-check, XML/XSLT output is compared with | |
437 | # --graph and --report=all output for every working grammar. | |
2bfcac9a JD |
438 | # |
439 | # 3. If stderr contains a warning, -Werror and --warnings=error | |
440 | # convert the warning to an error. | |
c39014ae JD |
441 | # |
442 | # 4. If stderr contains a warning, -Wnone and --warnings=none suppress it. | |
da730230 | 443 | m4_define([AT_BISON_CHECK], |
a122efad | 444 | [m4_null_if([$2], [AT_BISON_CHECK_XML($@)]) |
da730230 JD |
445 | AT_BISON_CHECK_NO_XML($@)]) |
446 | ||
2bfcac9a JD |
447 | m4_define([AT_BISON_WERROR_MSG], |
448 | [[bison: warnings being treated as errors]]) | |
449 | ||
a122efad AD |
450 | |
451 | # AT_BISON_CHECK_(BISON_ARGS, [OTHER_AT_CHECK_ARGS]) | |
452 | # -------------------------------------------------- | |
453 | # Low-level macro to run bison once. | |
454 | m4_define([AT_BISON_CHECK_], | |
455 | [AT_CHECK(AT_QUELL_VALGRIND[[ bison ]]$@)]) | |
456 | ||
457 | ||
e4828e23 AD |
458 | # AT_BISON_CHECK_WARNINGS(BISON_ARGS, [OTHER_AT_CHECK_ARGS]) |
459 | # ---------------------------------------------------------- | |
460 | # Check that warnings (if some are expected) are correctly | |
461 | # turned into errors with -Werror, etc. | |
462 | m4_define([AT_BISON_CHECK_WARNINGS], | |
463 | [m4_if(m4_bregexp([$4], [: warning: ]), [-1], [], | |
464 | [m4_null_if([$2], [AT_BISON_CHECK_WARNINGS_($@)])])]) | |
465 | ||
466 | m4_define([AT_BISON_CHECK_WARNINGS_], | |
467 | [[# Defining POSIXLY_CORRECT causes bison to complain if options | |
16d94f45 AD |
468 | # are added after the grammar file name, so skip these checks |
469 | # in that case. | |
470 | if test -z "${POSIXLY_CORRECT+set}"; then | |
5192fd5d | 471 | ]AT_SAVE_SPECIAL_FILES[ |
e4a14879 JD |
472 | |
473 | # To avoid expanding it repeatedly, store specified stdout. | |
474 | ]AT_DATA([expout], [$3])[ | |
475 | ||
476 | # Run with -Werror. | |
e4828e23 | 477 | ]AT_BISON_CHECK_([$1[ -Werror]], [[1]], [expout], [stderr])[ |
e4a14879 JD |
478 | |
479 | # Build expected stderr up to and including the "warnings being | |
480 | # treated as errors" message. | |
481 | ]AT_DATA([[at-bison-check-warnings]], [$4])[ | |
dd31e17d AD |
482 | at_bison_check_first=`sed -n \ |
483 | '/: warning: /{=;q;}' at-bison-check-warnings` | |
484 | : ${at_bison_check_first:=1} | |
485 | at_bison_check_first_tmp=`sed -n \ | |
486 | '/conflicts: [0-9].*reduce$/{=;q;}' at-bison-check-warnings` | |
487 | : ${at_bison_check_first_tmp:=1} | |
786743d5 JD |
488 | if test $at_bison_check_first_tmp -lt $at_bison_check_first; then |
489 | at_bison_check_first=$at_bison_check_first_tmp | |
490 | fi | |
e4a14879 JD |
491 | if test $at_bison_check_first -gt 1; then |
492 | sed -n "1,`expr $at_bison_check_first - 1`"p \ | |
493 | at-bison-check-warnings > experr | |
494 | fi | |
495 | echo ']AT_BISON_WERROR_MSG[' >> experr | |
496 | ||
497 | # Finish building expected stderr and check. Unlike warnings, | |
498 | # complaints cause bison to exit early. Thus, with -Werror, bison | |
499 | # does not necessarily report all warnings that it does without | |
500 | # -Werror, but it at least reports one. | |
dd31e17d AD |
501 | at_bison_check_last=`sed -n '$=' stderr` |
502 | : ${at_bison_check_last:=1} | |
503 | at_bison_check_last=`expr $at_bison_check_last - 1` | |
e4a14879 JD |
504 | sed -n "$at_bison_check_first,$at_bison_check_last"p \ |
505 | at-bison-check-warnings >> experr | |
506 | ]AT_CHECK([[sed 's,.*/\(]AT_BISON_WERROR_MSG[\)$,\1,' \ | |
507 | stderr 1>&2]], [[0]], [[]], [experr])[ | |
508 | ||
509 | # Now check --warnings=error. | |
510 | cp stderr experr | |
e4828e23 | 511 | ]AT_BISON_CHECK_([$1[ --warnings=error]], [[1]], [expout], [experr])[ |
e4a14879 JD |
512 | |
513 | # Now check -Wnone and --warnings=none by making sure that | |
514 | # -Werror doesn't change the exit status when -Wnone or | |
515 | # --warnings=none is specified. | |
e4828e23 AD |
516 | ]AT_BISON_CHECK_([$1[ -Wnone -Werror]], [[0]], [expout])[ |
517 | ]AT_BISON_CHECK_([$1[ --warnings=none -Werror]], [[0]], [expout])[ | |
e4a14879 | 518 | |
5192fd5d | 519 | ]AT_RESTORE_SPECIAL_FILES[ |
e4828e23 | 520 | fi]dnl |
2bfcac9a | 521 | ]) |
da730230 | 522 | |
da730230 JD |
523 | # AT_BISON_CHECK_NO_XML(BISON_ARGS, [OTHER_AT_CHECK_ARGS]) |
524 | # -------------------------------------------------------- | |
525 | # Same as AT_BISON_CHECK except don't perform XML/XSLT checks. This is useful | |
526 | # when a tortured grammar's XML is known to be too large for xsltproc to | |
527 | # handle. | |
528 | m4_define([AT_BISON_CHECK_NO_XML], | |
e4828e23 AD |
529 | [AT_CHECK(m4_null_if([$2], [], [AT_QUELL_VALGRIND ])[[bison ]]$@) |
530 | AT_BISON_CHECK_WARNINGS($@)]) | |
da730230 JD |
531 | |
532 | # AT_BISON_CHECK_XML(BISON_ARGS, [OTHER_AT_CHECK_ARGS]) | |
533 | # ----------------------------------------------------- | |
534 | # Run AT_BISON_CHECK's XML/XSLT checks if $BISON_TEST_XML=1 and $XSLTPROC is | |
535 | # defined. It doesn't make sense to invoke this macro if Bison is expected to | |
536 | # have a non-zero exit status. | |
537 | m4_define([AT_BISON_CHECK_XML], | |
035810ed AD |
538 | [[if test x"$BISON_TEST_XML" = x1 && test x"$XSLTPROC" != x""; then] |
539 | AT_SAVE_SPECIAL_FILES | |
540 | [mkdir xml-tests] | |
da730230 JD |
541 | m4_pushdef([AT_BISON_ARGS], |
542 | [m4_bpatsubsts([[$1]], | |
543 | [--report(-file)?=[^][ ]*], [], | |
544 | [--graph=[^][ ]*], [], | |
545 | [--xml=[^][ ]*], [])])dnl | |
546 | # Don't combine these Bison invocations since we want to be sure that | |
547 | # --report=all isn't required to get the full XML file. | |
a122efad | 548 | AT_BISON_CHECK_([[--report=all --report-file=xml-tests/test.output \ |
da730230 JD |
549 | --graph=xml-tests/test.dot ]]AT_BISON_ARGS, |
550 | [[0]], [ignore], [ignore]) | |
a122efad | 551 | AT_BISON_CHECK_([[--xml=xml-tests/test.xml ]]AT_BISON_ARGS, |
da730230 JD |
552 | [[0]], [ignore], [ignore]) |
553 | m4_popdef([AT_BISON_ARGS])dnl | |
247b8c21 | 554 | [cp xml-tests/test.output expout] |
da730230 JD |
555 | AT_CHECK([[$XSLTPROC \ |
556 | `]]AT_QUELL_VALGRIND[[ bison --print-datadir`/xslt/xml2text.xsl \ | |
557 | xml-tests/test.xml]], [[0]], [expout]) | |
247b8c21 | 558 | [cp xml-tests/test.dot expout] |
da730230 JD |
559 | AT_CHECK([[$XSLTPROC \ |
560 | `]]AT_QUELL_VALGRIND[[ bison --print-datadir`/xslt/xml2dot.xsl \ | |
561 | xml-tests/test.xml]], [[0]], [expout]) | |
035810ed AD |
562 | [rm -rf xml-tests expout] |
563 | AT_RESTORE_SPECIAL_FILES | |
564 | [fi]]) | |
da730230 JD |
565 | |
566 | # AT_QUELL_VALGRIND | |
567 | # ----------------- | |
568 | # Put this before a Bison invocation to keep Valgrind from complaining about | |
569 | # reachable memory. | |
570 | # | |
571 | # Do not quote invocations of this macro within the first argument of AT_CHECK. | |
572 | # The triple quoting below will cause test cases to fail if you do. If you do | |
573 | # so anyway but also decrease the quoting below to avoid that problem, AT_CHECK | |
574 | # will then fail to shell-escape its contents when attempting to print them. | |
575 | # The testsuite verbose output, at least, will be incorrect, but nothing may | |
576 | # fail to make sure you notice. | |
577 | m4_define([AT_QUELL_VALGRIND], | |
578 | [[[VALGRIND_OPTS="$VALGRIND_OPTS --leak-check=summary --show-reachable=no"; export VALGRIND_OPTS;]]]) | |
67a25fed | 579 | |
e4828e23 AD |
580 | |
581 | ||
67a25fed AD |
582 | ## ------------------------ ## |
583 | ## Compiling C, C++ Files. ## | |
584 | ## ------------------------ ## | |
585 | ||
586 | ||
587 | # AT_COMPILE(OUTPUT, [SOURCES = OUTPUT.c]) | |
588 | # ---------------------------------------- | |
91ce0b3a AD |
589 | # Compile SOURCES into OUTPUT. |
590 | # | |
591 | # If OUTPUT does not contain '.', assume that we are linking too, | |
592 | # otherwise pass "-c"; this is a hack. The default SOURCES is OUTPUT | |
593 | # with trailing .o removed, and ".c" appended. | |
67a25fed | 594 | m4_define([AT_COMPILE], |
91ce0b3a AD |
595 | [AT_CHECK(m4_join([ ], |
596 | [$CC $CFLAGS $CPPFLAGS], | |
597 | [m4_bmatch([$1], [[.]], [-c], [$LDFLAGS])], | |
598 | [-o $1], | |
599 | [m4_default([$2], [m4_bpatsubst([$1], [\.o$]).c])], | |
600 | [m4_bmatch([$1], [[.]], [], [$LIBS])]), | |
e9690142 | 601 | 0, [ignore], [ignore])]) |
67a25fed | 602 | |
07971983 | 603 | # AT_COMPILE_CXX(OUTPUT, [SOURCES = OUTPUT.cc]) |
91ce0b3a AD |
604 | # --------------------------------------------- |
605 | # Compile SOURCES into OUTPUT. If the C++ compiler does not work, | |
606 | # ignore the test. | |
607 | # | |
608 | # If OUTPUT does not contain '.', assume that we are linking too, | |
609 | # otherwise pass "-c"; this is a hack. The default SOURCES is OUTPUT | |
610 | # with trailing .o removed, and ".cc" appended. | |
67a25fed AD |
611 | m4_define([AT_COMPILE_CXX], |
612 | [AT_KEYWORDS(c++) | |
209ea708 | 613 | AT_CHECK([$BISON_CXX_WORKS], 0, ignore, ignore) |
91ce0b3a AD |
614 | AT_CHECK(m4_join([ ], |
615 | [$CXX $CXXFLAGS $CPPFLAGS], | |
616 | [m4_bmatch([$1], [[.]], [-c], [$LDFLAGS])], | |
617 | [-o $1], | |
618 | [m4_default([$2], [m4_bpatsubst([$1], [\.o$]).cc])], | |
619 | [m4_bmatch([$1], [[.]], [], [$LIBS])]), | |
e9690142 | 620 | 0, [ignore], [ignore])]) |
67a25fed | 621 | |
d2060f06 JD |
622 | # AT_JAVA_COMPILE(SOURCES) |
623 | # ------------------------ | |
624 | # Compile SOURCES into Java class files. Skip the test if java or javac | |
625 | # is not installed. | |
626 | m4_define([AT_JAVA_COMPILE], | |
627 | [AT_KEYWORDS(java) | |
916f26b6 AD |
628 | AT_SKIP_IF([[test -z "$CONF_JAVAC"]]) |
629 | AT_SKIP_IF([[test -z "$CONF_JAVA"]]) | |
d2060f06 JD |
630 | AT_CHECK([[$SHELL ../../../javacomp.sh ]$1], |
631 | [[0]], [ignore], [ignore])]) | |
67a25fed | 632 | |
2d40532b AD |
633 | # AT_LANG_COMPILE(OUTPUT, [SOURCES = OUTPUT.c] |
634 | # -------------------------------------------- | |
91ce0b3a AD |
635 | # Compile SOURCES into OUTPUT. Skip if compiler does not work. |
636 | # | |
637 | # If OUTPUT does not contain '.', assume that we are linking too, | |
638 | # otherwise pass "-c"; this is a hack. The default SOURCES is OUTPUT | |
639 | # with trailing .o removed, and ".c"/".cc" appended. | |
2d40532b AD |
640 | m4_define([AT_LANG_COMPILE], |
641 | [m4_case(AT_LANG, | |
642 | [c], [AT_COMPILE([$1], [$2])], | |
05a7b6ec | 643 | [c++], [AT_COMPILE_CXX([$1], [$2])], |
2d40532b AD |
644 | [java], [AT_JAVA_COMPILE([$1.java], [$2])], |
645 | [m4_fatal([unknown language: ]m4_defn([AT_LANG]))])[]dnl | |
646 | ]) | |
647 | ||
6aef2e01 AD |
648 | # AT_FULL_COMPILE(OUTPUT, [OTHER1], [OTHER2]) |
649 | # ------------------------------------------- | |
d2060f06 JD |
650 | # Compile OUTPUT.y to OUTPUT.c, OUTPUT.cc, or OUTPUT.java, and then |
651 | # compile it to OUTPUT or OUTPUT.class. If OTHER is specified, compile | |
652 | # OUTPUT-OTHER.c, OUTPUT-OTHER.cc, or OUTPUT-OTHER.java to OUTPUT or | |
653 | # OUTPUT.java along with it. Relies on AT_SKEL_CC_IF and | |
654 | # AT_SKEL_JAVA_IF. | |
2d40532b AD |
655 | m4_define([AT_FULL_COMPILE], |
656 | [m4_case(AT_LANG, | |
657 | [java], | |
658 | [AT_BISON_CHECK([-o $1.java $1.y]) | |
659 | AT_LANG_COMPILE([$1], | |
6aef2e01 AD |
660 | m4_join([ ], |
661 | [$1.java], | |
662 | m4_ifval($2, [[$1-$2.java]]), | |
2d40532b | 663 | m4_ifval($3, [[$1-$3.java]])))], |
05a7b6ec | 664 | [c++], |
2d40532b AD |
665 | [AT_BISON_CHECK([-o $1.cc $1.y]) |
666 | AT_LANG_COMPILE([$1], | |
6aef2e01 AD |
667 | m4_join([ ], |
668 | [$1.cc], | |
669 | m4_ifval($2, [[$1-$2.cc]]), | |
2d40532b AD |
670 | m4_ifval($3, [[$1-$3.cc]])))], |
671 | [c], | |
672 | [AT_BISON_CHECK([-o $1.c $1.y]) | |
673 | AT_LANG_COMPILE([$1], | |
6aef2e01 | 674 | m4_join([ ], |
e436fa67 | 675 | [$1.c], |
6aef2e01 | 676 | m4_ifval($2, [[$1-$2.c]]), |
2d40532b | 677 | m4_ifval($3, [[$1-$3.c]])))]) |
7ca2266a AD |
678 | ]) |
679 | ||
67a25fed AD |
680 | |
681 | ## ---------------------------- ## | |
682 | ## Running a generated parser. ## | |
683 | ## ---------------------------- ## | |
684 | ||
95e343fe | 685 | |
e0ac9b4b JD |
686 | # AT_PARSER_CHECK(COMMAND, EXIT-STATUS, EXPOUT, EXPERR, [PRE]) |
687 | # ------------------------------------------------------------ | |
67a25fed | 688 | # So that we can run `./testsuite PREPARSER='valgrind -q' for instance. |
95e343fe AD |
689 | # |
690 | # Get rid of spurious messages when compiled with --coverage: | |
691 | # +profiling:/[...]/lib/fprintf.gcda:Merge mismatch for summaries | |
67a25fed | 692 | m4_define([AT_PARSER_CHECK], |
95e343fe AD |
693 | [AT_CHECK([$5 $PREPARSER $1], [$2], [$3], [stderr]) |
694 | AT_CHECK([sed >&2 -e '/^profiling:.*:Merge mismatch for summaries/d' stderr], | |
695 | [0], [], [$4]) | |
696 | ]) | |
697 | ||
1f7a61ff | 698 | |
d2060f06 JD |
699 | # AT_JAVA_PARSER_CHECK(COMMAND, EXIT-STATUS, EXPOUT, EXPERR, [PRE]) |
700 | # ----------------------------------------------------------------- | |
701 | m4_define([AT_JAVA_PARSER_CHECK], | |
702 | [AT_CHECK([$5[ $SHELL ../../../javaexec.sh ]$1], [$2], [$3], [$4])]) | |
703 | ||
95e343fe | 704 | |
7254f6a8 JD |
705 | # AT_TEST_TABLES_AND_PARSE(TITLE, COND-VALUE, TEST-SPEC, |
706 | # DECLS, GRAMMAR, INPUT, | |
707 | # BISON-STDERR, TABLES-OR-LAST-STATE, | |
708 | # [OTHER-CHECKS], | |
709 | # [PARSER-EXIT-VALUE], | |
710 | # [PARSER-STDOUT], [PARSER-STDERR]) | |
711 | # ------------------------------------------------------------- | |
712 | # Using TITLE as the test group title, check the generated parser tables | |
713 | # and parser for a specified grammar file under a condition labeled by | |
714 | # COND-VALUE. | |
715 | # | |
716 | # TEST-SPEC is a comma-delimited list of attributes of this test. Each | |
717 | # recognized attribute is described below where it is relevant. | |
718 | # | |
719 | # Insert DECLS and GRAMMAR into the declarations and grammar section of | |
720 | # the grammar file. Insert basic yyerror, yylex, and main function | |
721 | # definitions as well. Hardcode yylex to return the (possibly empty) | |
722 | # comma-delimited series of tokens in INPUT followed by token 0. | |
723 | # | |
724 | # If TEST-SPEC contains the attribute no-xml, then invoke bison using | |
725 | # AT_BISON_CHECK_NO_XML. Otherwise, invoke bison using AT_BISON_CHECK. | |
726 | # On the bison command-line, specify `--report=all --defines'. Check | |
727 | # that Bison exits with value 0, has no stdout, and has stderr | |
728 | # BISON-STDERR. | |
729 | # | |
730 | # If TEST-SPEC contains the attribute `last-state', check that the value | |
731 | # of TABLES-OR-LAST-STATE is the index of the last state generated for | |
732 | # the grammar; in other words, check the number of states (minus one). | |
733 | # Otherwise, check that everything in the `.output' file starting with | |
734 | # the definition of state 0 is the same as the entire value of | |
735 | # TABLES-OR-LAST-STATE. | |
736 | # | |
737 | # Expand the M4 in OTHER-CHECKS to perform additional checks of the | |
738 | # `.output' file, which is named `input.output', and/or grammar file, | |
739 | # which is named `input.y'. | |
740 | # | |
741 | # Finally, compile the generated parser and then run it using | |
742 | # AT_PARSER_CHECK with PARSER-EXIT-VALUE, PARSER-STDOUT, and | |
743 | # PARSER-STDERR as the 2nd-4th arguments. | |
744 | # | |
745 | # As a precondition, you must properly double-quote all arguments that | |
746 | # are to be interpreted as strings. | |
747 | # | |
748 | # AT_COND_CASE (when appearing in single-quoted segments of arguments) | |
749 | # invokes m4_case with its own arguments but COND-VALUE inserted as the | |
750 | # first argument. This is useful, for example, when wrapping multiple | |
751 | # AT_TEST_TABLES_AND_PARSE invocations, each representing a different | |
752 | # condition, in another macro. | |
753 | # | |
754 | # For example: | |
755 | # | |
756 | # # AT_TEST_SYNTAX_ERROR(DESCRIPTION, DECLS, GRAMMAR, INPUT, LAST-STATE, | |
757 | # # PARSER-EXIT-VALUE, PARSER-STDOUT, PARSER-STDERR) | |
758 | # # --------------------------------------------------------------------- | |
759 | # m4_define([AT_TEST_SYNTAX_ERROR], | |
760 | # [ | |
761 | # AT_TEST_TABLES_AND_PARSE([$1[ with %error-verbose]], [[verbose]], | |
762 | # [[last-state]], | |
763 | # [[%error-verbose ]$2], [$3], [$4], | |
764 | # [[]], [$5], [], [$6], [$7], [$8]) | |
765 | # AT_TEST_TABLES_AND_PARSE([$1[ with no %error-verbose]], [[no verbose]], | |
766 | # [[last-state]], | |
767 | # [$2], [$3], [$4], | |
768 | # [[]], [$5], [], [$6], [$7], [$8]) | |
769 | # ]) | |
770 | # | |
771 | # AT_TEST_SYNTAX_ERROR([[Single Char Grammar]], | |
772 | # [[%token 'b']], [[start: 'a' ;]], [['a', 'b']], | |
773 | # [[3]], | |
774 | # [[1]], [[]], | |
775 | # [AT_COND_CASE([[no verbose]], | |
776 | # [[syntax error | |
777 | # ]], | |
778 | # [[syntax error, unexpected 'b', expecting $end | |
779 | # ]])]) | |
780 | m4_define([AT_TEST_TABLES_AND_PARSE], | |
c4be5517 | 781 | [m4_pushdef([AT_COND_CASE], [m4_case([$2], $][@)]) |
7254f6a8 | 782 | |
c4be5517 | 783 | AT_SETUP([$1]) |
55f48c48 | 784 | AT_BISON_OPTION_PUSHDEFS([$4]) |
7254f6a8 JD |
785 | AT_DATA_GRAMMAR([[input.y]], |
786 | [[%code { | |
787 | #include <stdio.h> | |
55f48c48 AD |
788 | ]AT_YYERROR_DECLARE[ |
789 | ]AT_YYLEX_DECLARE[ | |
7254f6a8 JD |
790 | } |
791 | ||
c4be5517 | 792 | ]$4[ |
7254f6a8 JD |
793 | |
794 | %% | |
795 | ||
c4be5517 | 796 | ]$5[ |
7254f6a8 JD |
797 | |
798 | %% | |
55f48c48 | 799 | ]AT_YYERROR_DEFINE[ |
7254f6a8 JD |
800 | static int |
801 | yylex (void) | |
802 | { | |
803 | static int const input[] = { | |
c4be5517 | 804 | ]m4_if([$6], [], [], [$6], [[]], [], [$6[, ]])[0 |
7254f6a8 JD |
805 | }; |
806 | static int const *inputp = input; | |
807 | return *inputp++; | |
808 | } | |
809 | ||
810 | int | |
811 | main (void) | |
812 | { | |
813 | return yyparse (); | |
814 | } | |
815 | ]]) | |
816 | ||
c4be5517 JD |
817 | # In some versions of Autoconf, AT_CHECK invokes AS_ESCAPE before |
818 | # expanding macros, so it corrupts some special characters in the | |
819 | # macros. To avoid this, expand now and pass it the result with proper | |
cbdb6d91 | 820 | # string quotation. Assume args 7 through 12 expand to properly quoted |
c4be5517 | 821 | # strings. |
7254f6a8 | 822 | |
c4be5517 | 823 | m4_if(m4_index(m4_quote($3), [no-xml]), -1, |
7254f6a8 JD |
824 | [AT_BISON_CHECK], |
825 | [AT_BISON_CHECK_NO_XML])([[--report=all --defines -o input.c input.y]], | |
c4be5517 | 826 | [0], [], m4_dquote($7)) |
7254f6a8 | 827 | |
c4be5517 | 828 | m4_if(m4_index(m4_quote($3), [last-state]), -1, |
7254f6a8 | 829 | [AT_CHECK([[sed -n '/^state 0$/,$p' input.output]], [[0]], |
c4be5517 | 830 | m4_dquote($8))], |
7254f6a8 | 831 | [AT_CHECK([[sed -n 's/^state //p' input.output | tail -1]], [[0]], |
c4be5517 | 832 | m4_dquote($8)[[ |
7254f6a8 | 833 | ]])]) |
7254f6a8 | 834 | |
c4be5517 | 835 | $9 |
7254f6a8 | 836 | |
8ec3110a AD |
837 | # Canonical LR generates very large tables, resulting in very long |
838 | # files with #line directives that may overflow what the standards | |
839 | # (C90 and C++98) guarantee: 32767. In that case, GCC's -pedantic | |
840 | # will issue an error. | |
841 | # | |
842 | # There is no "" around `wc` since some indent the result. | |
843 | m4_bmatch([$4], [%define lr.type canonical-lr], | |
844 | [if test 32767 -lt `wc -l < input.c`; then | |
845 | CFLAGS=`echo " $CFLAGS " | sed -e 's/ -pedantic //'` | |
846 | CXXFLAGS=`echo " $CXXFLAGS " | sed -e 's/ -pedantic //'` | |
847 | fi]) | |
7254f6a8 JD |
848 | AT_COMPILE([[input]]) |
849 | ||
c4be5517 JD |
850 | AT_PARSER_CHECK([[./input]], |
851 | m4_ifval([$10], [m4_dquote($10)]), | |
852 | m4_ifval([$11], [m4_dquote($11)]), | |
853 | m4_ifval([$12], [m4_dquote($12)])) | |
7254f6a8 | 854 | |
55f48c48 | 855 | AT_BISON_OPTION_POPDEFS |
7254f6a8 JD |
856 | AT_CLEANUP |
857 | ||
858 | m4_popdef([AT_COND_CASE])]) | |
1f7a61ff AD |
859 | |
860 | ||
861 | ||
862 | ## ----------------------- ## | |
863 | ## Launch the test suite. ## | |
864 | ## ----------------------- ## | |
865 | ||
866 | AT_INIT | |
867 | ||
ac3f2e33 AD |
868 | # Cannot assign CC and CFLAGS here, since atlocal is loaded after |
869 | # options are processed, so we don't know the value of CXX and | |
870 | # CXXFLAGS yet. | |
871 | # | |
872 | # Note that it also means that command line values for CXX and | |
873 | # CXXFLAGS will not be propagated to CC and CFLAGS. | |
874 | AT_ARG_OPTION([compile-c-with-cxx], | |
875 | [compile C parsers with the C++ compiler]) | |
876 | ||
877 | AT_COLOR_TESTS | |
878 | ||
1f7a61ff | 879 | AT_TESTED([bison]) |