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