]> git.saurik.com Git - bison.git/blame - tests/local.at
bison: avoid warnings from static code analysis
[bison.git] / tests / local.at
CommitLineData
67a25fed
AD
1# Process this -*- Autotest -*- file with autom4te.
2
3# Macros for the GNU Bison Test suite.
7d424de1 4
3209eb1c 5# Copyright (C) 2003-2015 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 20m4_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.
26m4_define([m4_null_if],
27[m4_case(m4_quote($1),
28 [0], [$2],
29 [], [$2],
30 [$3])])
31
781eaf90
AD
32# AT_SETUP_STRIP(TITLE)
33# ---------------------
9b3bb258
AD
34# Abbreviate the TITLE to be passed to AT_SETUP. Remove new-lines
35# that completely break AT_SETUP.
781eaf90
AD
36m4_define([AT_SETUP_STRIP],
37[m4_bpatsubsts([$1],
38 [%\(language\|skeleton\) "?\([^\" ]*\)"?],
39 [\2],
eb0e86ac 40 [%define "?\([-A-Za-z0-9_.]+\)"? \({[^\}]+}\|"[^\"]+"\|[-A-Za-z0-9_.]+\)],
9b3bb258 41 [\1=\2],
781eaf90 42 [%define "?\([-A-Za-z0-9_.]+\)"?],
9b3bb258
AD
43 [\1],
44 [ *
45+ *], [ ])dnl
781eaf90
AD
46])
47
48
6617622c
AD
49## ------------- ##
50## Basic tests. ##
51## ------------- ##
52
53# AT_MATCHES_CHECK(FILE, PERL-REGEXP, COUNT)
54# ------------------------------------------
55# Expect COUNT matches of the PERL-REGEXP in FILE. The file is
56# taken in "slurp" mode, i.e., one can match end-of-lines.
57m4_define([AT_MATCHES_CHECK],
ff020c30 58[AT_CHECK([$PERL -0777 -ne '
6617622c
AD
59my $count = 0;
60s{$2}{ ++$count; "" }gem;
61printf "$count\n";' $1], [0], [$3
62])])
63
64
5192fd5d
AD
65# AT_SAVE_SPECIAL_FILES / AT_RESTORE_SPECIAL_FILES
66# ------------------------------------------------
67# Don't interfere with caller's files.
68m4_divert_text([PREPARE_TESTS],
69[at_save_special_files ()
70{
71 for at_save_file in stderr experr expout
72 do
1aa9fa82
AD
73 test ! -f at-bison-check-$at_save_file.bak ||
74 as_fn_error 1 "fatal error: back-up on top of a back-up"
5192fd5d
AD
75 test ! -f $at_save_file || mv $at_save_file at-bison-check-$at_save_file.bak
76 done
77}
78
79at_restore_special_files ()
80{
81 for at_save_file in stderr experr expout
82 do
83 test ! -f at-bison-check-$at_save_file.bak ||
84 mv at-bison-check-$at_save_file.bak $at_save_file
85 done
86}
87])
88
89m4_define([AT_SAVE_SPECIAL_FILES], [at_save_special_files])
90m4_define([AT_RESTORE_SPECIAL_FILES], [at_restore_special_files])
91
92
93
67a25fed
AD
94## ------------------------------- ##
95## Macros decoding Bison options. ##
96## ------------------------------- ##
97
4f756f88
AD
98# AT_LOC_PUSHDEF(FIRST-LINE, FIRST-COLUMN, LAST-LINE, LAST-COLUMN)
99# ----------------------------------------------------------------
aedcb6c0 100# Pushdef AT(_LOC)?_(FIRST|LAST)_(LINE|COLUMN).
4f756f88 101m4_define([AT_LOC_PUSHDEF],
aedcb6c0
AD
102[m4_pushdef([AT_FIRST_LINE], [$1])
103m4_pushdef([AT_FIRST_COLUMN], [$2])
104m4_pushdef([AT_LAST_LINE], [$3])
105m4_pushdef([AT_LAST_COLUMN], [$4])
106m4_pushdef([AT_LOC_FIRST_LINE], [AT_LOC.AT_FIRST_LINE])
107m4_pushdef([AT_LOC_FIRST_COLUMN], [AT_LOC.AT_FIRST_COLUMN])
108m4_pushdef([AT_LOC_LAST_LINE], [AT_LOC.AT_LAST_LINE])
109m4_pushdef([AT_LOC_LAST_COLUMN], [AT_LOC.AT_LAST_COLUMN])])
4f756f88
AD
110
111# AT_LOC_POPDEF
112# -------------
aedcb6c0 113# Popdef AT(_LOC)?_(FIRST|LAST)_(LINE|COLUMN).
4f756f88
AD
114m4_define([AT_LOC_POPDEF],
115[m4_popdef([AT_LOC_FIRST_LINE])
116m4_popdef([AT_LOC_FIRST_COLUMN])
117m4_popdef([AT_LOC_LAST_LINE])
aedcb6c0
AD
118m4_popdef([AT_LOC_LAST_COLUMN])
119m4_popdef([AT_FIRST_LINE])
120m4_popdef([AT_FIRST_COLUMN])
121m4_popdef([AT_LAST_LINE])
122m4_popdef([AT_LAST_COLUMN])
123])
4f756f88
AD
124
125
67a25fed
AD
126
127# AT_BISON_OPTION_PUSHDEFS([BISON-OPTIONS])
128# -----------------------------------------
129m4_define([AT_BISON_OPTION_PUSHDEFS],
a32a2d57
AD
130[m4_divert_text([KILL],
131 [_AT_BISON_OPTION_PUSHDEFS($[1], $[2], [$1])])])
67a25fed
AD
132
133
134# _AT_BISON_OPTION_PUSHDEFS($1, $2, [BISON-OPTIONS])
135# --------------------------------------------------
136# This macro works around the impossibility to define macros
4c9b8f13 137# inside macros, because issuing '[$1]' is not possible in M4 :(.
417e31d2 138# This sucks hard, GNU M4 should really provide M5-like $$1.
67a25fed
AD
139m4_define([_AT_BISON_OPTION_PUSHDEFS],
140[m4_if([$1$2], $[1]$[2], [],
141 [m4_fatal([$0: Invalid arguments: $@])])dnl
6c88b51e
JD
142m4_pushdef([AT_DEFINES_IF],
143[m4_bmatch([$3], [%defines], [$1], [$2])])
3ef9fa8f
AD
144m4_pushdef([AT_DEBUG_IF],
145[m4_bmatch([$3], [%debug\|%define parse.trace], [$1], [$2])])
8f7e3cf9 146m4_pushdef([AT_SKEL_CC_IF],
0e021770 147[m4_bmatch([$3], [%language "[Cc]\+\+"\|%skeleton "[a-z0-9]+\.cc"], [$1], [$2])])
d2060f06
JD
148m4_pushdef([AT_SKEL_JAVA_IF],
149[m4_bmatch([$3], [%language "[Jj][Aa][Vv][Aa]"\|%skeleton "[a-z0-9]+\.java"], [$1], [$2])])
3472de82 150# The target language: "c", "c++", or "java".
2d40532b
AD
151m4_pushdef([AT_LANG],
152[AT_SKEL_JAVA_IF([java],
05a7b6ec 153 [AT_SKEL_CC_IF([c++],
2d40532b 154 [c])])])
67a25fed 155m4_pushdef([AT_GLR_IF],
5f7f1e21 156[m4_bmatch([$3], [%glr-parser\|%skeleton "glr\..*"], [$1], [$2])])
0e021770
PE
157m4_pushdef([AT_LALR1_CC_IF],
158[AT_SKEL_CC_IF([AT_GLR_IF([$2], [$1])], [$2])])
159m4_pushdef([AT_GLR_CC_IF],
160[AT_SKEL_CC_IF([AT_GLR_IF([$1], [$2])], [$2])])
67a25fed
AD
161# Using yacc.c?
162m4_pushdef([AT_YACC_IF],
0e021770 163[m4_bmatch([$3], [%language\|%glr-parser\|%skeleton], [$2], [$1])])
01b477c6
PB
164m4_pushdef([AT_LEXPARAM_IF],
165[m4_bmatch([$3], [%lex-param], [$1], [$2])])
67a25fed
AD
166m4_pushdef([AT_LOCATION_IF],
167[m4_bmatch([$3], [%locations], [$1], [$2])])
24bb8c8c 168m4_pushdef([AT_LOCATION_TYPE_IF],
db8ab2be 169[m4_bmatch([$3], [%define \(api\.location\.type\|location_type\)], [$1], [$2])])
24bb8c8c
AD
170m4_pushdef([AT_PARAM_IF],
171[m4_bmatch([$3], [%parse-param], [$1], [$2])])
3472de82 172# Comma-terminated list of formals parse-parameters.
e42906f7
AD
173# E.g., %parse-param { int x } %parse-param {int y} -> "int x, int y, ".
174# FIXME: Support grouped parse-param.
3472de82
AD
175m4_pushdef([AT_PARSE_PARAMS])
176m4_bpatsubst([$3], [%parse-param { *\([^{}]*[^{} ]\) *}],
177 [m4_append([AT_PARSE_PARAMS], [\1, ])])
178
67a25fed 179m4_pushdef([AT_PURE_IF],
d9df47b6 180[m4_bmatch([$3], [%define *api\.pure\|%pure-parser],
6ce4b4ff 181 [m4_bmatch([$3], [%define *api\.pure *false], [$2], [$1])],
d9df47b6 182 [$2])])
56b91ae0 183# AT_NAME_PREFIX: also consider api.namespace.
aa08666d 184m4_pushdef([AT_NAME_PREFIX],
eb0e86ac
AD
185[m4_bmatch([$3], [\(%define api\.\(namespace\|prefix\)\|%name-prefix\) .*],
186 [m4_bregexp([$3],
6ce4b4ff 187 [\(%define api\.\(namespace\|prefix\)\|%name-prefix\) [\{\"]\([^\"\}]*\)[\"\}]],
eb0e86ac
AD
188 [\3])],
189 [yy])])
e36ec1f4 190m4_pushdef([AT_TOKEN_CTOR_IF],
dc8e535c 191[m4_bmatch([$3], [%define api\.token\.constructor], [$1], [$2])])
417e31d2 192m4_pushdef([AT_TOKEN_PREFIX],
630a0218
AD
193[m4_bmatch([$3], [%define api\.token\.prefix {.*}],
194 [m4_bregexp([$3], [%define api\.token\.prefix {\(.*\)}], [\1])])])
dc8e535c 195m4_pushdef([AT_VARIANT_IF],
6ce4b4ff 196[m4_bmatch([$3], [%define api\.value\.type variant], [$1], [$2])])
837b7696 197m4_pushdef([AT_API_prefix],
6ce4b4ff
AD
198[m4_bmatch([$3], [%define api\.prefix {.*}],
199 [m4_bregexp([$3], [%define api\.prefix {\([^\}]*\)}], [\1])],
837b7696 200 [yy])])
4b3847c3
AD
201m4_pushdef([AT_API_PREFIX],
202[m4_toupper(AT_API_prefix)])
dbb99836
TR
203# yyerror receives the location if %location, and if the parser is pure. For
204# historical reasons, with the "yacc.c" skeleton, the location is not passed
205# unless an additional "%parse-param" is present, or if the purity is defined
206# as "full".
67a25fed 207m4_pushdef([AT_YYERROR_ARG_LOC_IF],
dbb99836
TR
208[AT_LOCATION_IF([AT_PURE_IF([m4_bmatch([$3],
209 m4_quote(m4_join([\|],
6ce4b4ff 210 [%define api\.pure full],
dbb99836
TR
211 [%glr-parser],
212 [%parse-param],
213 [%skeleton "?glr.c"?])),
214 [$1], [$2])],
215 [$2])],
e9690142 216 [$2])])
dbb99836
TR
217
218# yyerror always sees the locations (when activated) if the parser is impure.
219# When the parser is pure, yyerror sees the location if it is received as an
220# argument.
67a25fed 221m4_pushdef([AT_YYERROR_SEES_LOC_IF],
dbb99836 222[AT_LOCATION_IF([AT_YACC_IF([AT_PURE_IF([AT_YYERROR_ARG_LOC_IF([$1], [$2])],
e9690142
JD
223 [$1])],
224 [$1])],
225 [$2])])
67a25fed 226
d9df47b6 227# The interface is pure: either because %define api.pure, or because we
67a25fed
AD
228# are using the C++ parsers.
229m4_pushdef([AT_PURE_LEX_IF],
94ebeba5 230[AT_PURE_IF([$1],
e9690142 231 [AT_SKEL_CC_IF([$1], [$2])])])
67a25fed 232
0e16927b
AD
233m4_pushdef([AT_YYSTYPE],
234[AT_SKEL_CC_IF([AT_NAME_PREFIX[::parser::semantic_type]],
4b3847c3 235 [AT_API_PREFIX[STYPE]])])
0e16927b
AD
236m4_pushdef([AT_YYLTYPE],
237[AT_SKEL_CC_IF([AT_NAME_PREFIX[::parser::location_type]],
4b3847c3 238 [AT_API_PREFIX[LTYPE]])])
0e16927b
AD
239
240
67a25fed 241AT_PURE_LEX_IF(
ebc3737e
PE
242[m4_pushdef([AT_LOC], [(*llocp)])
243 m4_pushdef([AT_VAL], [(*lvalp)])
230a3db4 244 m4_pushdef([AT_YYLEX_FORMALS],
297e263a 245 [AT_YYSTYPE *lvalp[]AT_LOCATION_IF([, AT_YYLTYPE *llocp])])
230a3db4 246 m4_pushdef([AT_YYLEX_ARGS],
e9690142 247 [lvalp[]AT_LOCATION_IF([, llocp])])
67a25fed 248 m4_pushdef([AT_USE_LEX_ARGS],
e9690142 249 [(void) lvalp;AT_LOCATION_IF([(void) llocp])])
230a3db4 250 m4_pushdef([AT_YYLEX_PRE_FORMALS],
297e263a 251 [AT_YYLEX_FORMALS, ])
230a3db4 252 m4_pushdef([AT_YYLEX_PRE_ARGS],
297e263a 253 [AT_YYLEX_ARGS, ])
67a25fed 254],
6c88b51e
JD
255[m4_pushdef([AT_LOC], [[(]AT_NAME_PREFIX[lloc)]])
256 m4_pushdef([AT_VAL], [[(]AT_NAME_PREFIX[lval)]])
230a3db4
AD
257 m4_pushdef([AT_YYLEX_FORMALS], [void])
258 m4_pushdef([AT_YYLEX_ARGS], [])
67a25fed 259 m4_pushdef([AT_USE_LEX_ARGS], [])
230a3db4
AD
260 m4_pushdef([AT_YYLEX_PRE_FORMALS], [])
261 m4_pushdef([AT_YYLEX_PRE_ARGS], [])
67a25fed 262])
4f756f88
AD
263
264# Handle the different types of location components.
265
266AT_SKEL_CC_IF(
267 [AT_LOCATION_TYPE_IF(
49976d5c 268 [AT_LOC_PUSHDEF([first.l], [first.c], [last.l], [last.c])],
4f756f88
AD
269 [AT_LOC_PUSHDEF([begin.line], [begin.column], [end.line], [end.column])])],
270 [AT_LOC_PUSHDEF([first_line], [first_column], [last_line], [last_column])])
271
272
6130b755 273AT_GLR_IF([AT_KEYWORDS([glr])])
67a25fed
AD
274])# _AT_BISON_OPTION_PUSHDEFS
275
276
277# AT_BISON_OPTION_POPDEFS
278# -----------------------
279m4_define([AT_BISON_OPTION_POPDEFS],
a32a2d57 280[m4_divert_text([KILL],
230a3db4
AD
281[m4_popdef([AT_YYLEX_PRE_ARGS])
282m4_popdef([AT_YYLEX_PRE_FORMALS])
67a25fed 283m4_popdef([AT_USE_LEX_ARGS])
230a3db4
AD
284m4_popdef([AT_YYLEX_ARGS])
285m4_popdef([AT_YYLEX_FORMALS])
0e16927b
AD
286m4_popdef([AT_YYLTYPE])
287m4_popdef([AT_YYSTYPE])
67a25fed
AD
288m4_popdef([AT_VAL])
289m4_popdef([AT_LOC])
290m4_popdef([AT_PURE_LEX_IF])
291m4_popdef([AT_YYERROR_SEES_LOC_IF])
292m4_popdef([AT_YYERROR_ARG_LOC_IF])
4b3847c3 293m4_popdef([AT_API_PREFIX])
837b7696 294m4_popdef([AT_API_prefix])
dc8e535c 295m4_popdef([AT_VARIANT_IF])
e36ec1f4
AD
296m4_popdef([AT_TOKEN_PREFIX])
297m4_popdef([AT_TOKEN_CTOR_IF])
aa08666d 298m4_popdef([AT_NAME_PREFIX])
24bb8c8c 299m4_popdef([AT_LOCATION_TYPE_IF])
67a25fed 300m4_popdef([AT_LOCATION_IF])
3472de82 301m4_popdef([AT_PARSE_PARAMS])
67a25fed 302m4_popdef([AT_PARAM_IF])
01b477c6 303m4_popdef([AT_LEXPARAM_IF])
67a25fed
AD
304m4_popdef([AT_YACC_IF])
305m4_popdef([AT_GLR_IF])
8f7e3cf9 306m4_popdef([AT_SKEL_CC_IF])
2d40532b 307m4_popdef([AT_LANG])
d2060f06 308m4_popdef([AT_SKEL_JAVA_IF])
8f7e3cf9 309m4_popdef([AT_GLR_CC_IF])
67a25fed 310m4_popdef([AT_LALR1_CC_IF])
6c88b51e 311m4_popdef([AT_DEFINES_IF])
3ef9fa8f 312m4_popdef([AT_DEBUG_IF])
a32a2d57 313AT_LOC_POPDEF])dnl
67a25fed
AD
314])# AT_BISON_OPTION_POPDEFS
315
316
317
318## -------------------------- ##
319## Generating Grammar Files. ##
320## -------------------------- ##
321
6112cb18
AD
322# _AT_LANG_DISPATCH(LANG, MACRO, ARGS)
323# ------------------------------------
324# Call the specialization of MACRO for LANG with ARGS. Complain if
325# unavailable.
326m4_define([_AT_LANG_DISPATCH],
327[m4_ifdef([$2($1)],
328 [m4_indir([$2($1)], m4_shift2($@))],
329 [m4_fatal([$2: unknown language: $1])])])
330
331
332# AT_LANG_DISPATCH(MACRO, ARGS)
333# -----------------------------
334# Call the specialization of MACRO for AT_LANG with ARGS. Complain if
335# unavailable.
336m4_define([AT_LANG_DISPATCH],
337[_AT_LANG_DISPATCH(AT_LANG, $@)])
338
339
340
6c88b51e 341# AT_DATA_SOURCE_PROLOGUE
b7171c45 342# -----------------------
6c88b51e 343# The prologue that should be included in any source code that is
b7171c45 344# meant to be compiled. Keep atlocal.in sync (BISON_CXX_WORKS).
6c88b51e
JD
345m4_define([AT_DATA_SOURCE_PROLOGUE],
346[[#include <config.h>
231ed89a
PE
347/* We don't need perfect functions for these tests. */
348#undef malloc
349#undef memcmp
350#undef realloc
6c88b51e
JD
351]])
352
353# AT_DATA_GRAMMAR_PROLOGUE
354# ------------------------
355# The prologue that should be included in any grammar which parser is
356# meant to be compiled.
357m4_define([AT_DATA_GRAMMAR_PROLOGUE],
358[[%code top {
359]AT_DATA_SOURCE_PROLOGUE[]dnl
360[}
361]])
67a25fed 362
6c88b51e
JD
363# AT_DATA_SOURCE(NAME, CONTENT)
364# -----------------------------
365# Generate the file NAME, which CONTENT is preceded by
366# AT_DATA_SOURCE_PROLOGUE.
367m4_define([AT_DATA_SOURCE],
368[AT_DATA([$1],
369[AT_DATA_SOURCE_PROLOGUE
370$2])
371])
67a25fed
AD
372
373# AT_DATA_GRAMMAR(NAME, CONTENT)
374# ------------------------------
375# Generate the file NAME, which CONTENT is preceded by
376# AT_DATA_GRAMMAR_PROLOGUE.
377m4_define([AT_DATA_GRAMMAR],
378[AT_DATA([$1],
379[AT_DATA_GRAMMAR_PROLOGUE
380$2])
381])
382
230a3db4 383# AT_YYLEX_PROTOTYPE
55f48c48
AD
384# AT_YYLEX_DECLARE_EXTERN
385# AT_YYLEX_DECLARE
95361618
AD
386# AT_YYLEX_DEFINE([INPUT], [ACTION])
387# ----------------------------------
388# INPUT can be empty, or in double quotes, or a list (in braces).
389# ACTION may compute yylval for instance, using "res" as token type,
390# and "toknum" as the number of calls to yylex (starting at 0).
230a3db4 391m4_define([AT_YYLEX_PROTOTYPE],
837b7696 392[int AT_NAME_PREFIX[]lex (]AT_YYLEX_FORMALS[)[]dnl
230a3db4
AD
393])
394
55f48c48 395m4_define([AT_YYLEX_DECLARE_EXTERN],
230a3db4 396[AT_YYLEX_PROTOTYPE;dnl
55f48c48
AD
397])
398
399m4_define([AT_YYLEX_DECLARE],
400[static AT_YYLEX_DECLARE_EXTERN[]dnl
401])
402
403m4_define([AT_YYLEX_DEFINE],
77519a7d 404[[#include <assert.h>
230a3db4
AD
405static
406]AT_YYLEX_PROTOTYPE[
55f48c48 407{
95361618
AD
408 ]m4_bmatch([$1], [^\(".*"\)?$],
409 [[static char const input[] = ]m4_default([$1], [""])],
410 [[static int const input[] = ]$1])[;
55f48c48
AD
411 static size_t toknum = 0;
412 int res;
0e16927b 413 ]AT_USE_LEX_ARGS[;
55e075f2 414 assert (toknum < sizeof input / sizeof input[0]);
55f48c48 415 res = input[toknum++];
0e16927b
AD
416 ]$2[;]AT_LOCATION_IF([[
417 ]AT_LOC_FIRST_LINE[ = ]AT_LOC_LAST_LINE[ = 1;
418 ]AT_LOC_FIRST_COLUMN[ = ]AT_LOC_LAST_COLUMN[ = toknum;]])[
55f48c48
AD
419 return res;
420}]dnl
421])
422
6428a8a4 423# AT_YYERROR_FORMALS
6d559547 424# AT_YYERROR_PROTOTYPE
55f48c48
AD
425# AT_YYERROR_DECLARE_EXTERN
426# AT_YYERROR_DECLARE
427# AT_YYERROR_DEFINE
428# -------------------------
6d559547 429# Must be called inside a AT_BISON_OPTION_PUSHDEFS/POPDEFS pair.
6112cb18
AD
430m4_define([AT_YYERROR_FORMALS], [AT_LANG_DISPATCH([$0], $@)])
431m4_define([AT_YYERROR_PROTOTYPE],[AT_LANG_DISPATCH([$0], $@)])
432m4_define([AT_YYERROR_DECLARE_EXTERN], [AT_LANG_DISPATCH([$0], $@)])
433m4_define([AT_YYERROR_DECLARE], [AT_LANG_DISPATCH([$0], $@)])
434m4_define([AT_YYERROR_DEFINE], [AT_LANG_DISPATCH([$0], $@)])
230a3db4 435
6112cb18
AD
436# AT_MAIN_DEFINE
437# --------------
438m4_define([AT_MAIN_DEFINE], [AT_LANG_DISPATCH([$0], $@)])
6d559547 439
55f48c48 440
6112cb18
AD
441
442## --- ##
443## C. ##
444## --- ##
445
446m4_define([AT_YYERROR_FORMALS(c)],
edd3280b 447[AT_YYERROR_ARG_LOC_IF([AT_YYLTYPE const * const llocp, ])AT_PARSE_PARAMS[const char *msg]])
6112cb18
AD
448
449m4_define([AT_YYERROR_PROTOTYPE(c)],
450[[void ]AT_NAME_PREFIX[error (]AT_YYERROR_FORMALS[)]])
451
452m4_define([AT_YYERROR_DECLARE_EXTERN(c)],
453[AT_YYERROR_PROTOTYPE;])
454
455m4_define([AT_YYERROR_DECLARE(c)],
456[#include <stdio.h>
f0f95a50
AD
457]AT_LOCATION_IF([[
458#if defined ]AT_YYLTYPE[_IS_TRIVIAL && ]AT_YYLTYPE[_IS_TRIVIAL
459static unsigned location_print (FILE *yyo, ]AT_YYLTYPE[ const * const yylocp);
460# ifndef LOCATION_PRINT
461# define LOCATION_PRINT(File, Loc) location_print (File, &(Loc))
462# endif
463#endif
464]])[
6112cb18 465static AT_YYERROR_DECLARE_EXTERN])
55f48c48 466
6112cb18
AD
467
468m4_define([AT_YYERROR_DEFINE(c)],
469[[
f0f95a50
AD
470]AT_LOCATION_IF([[
471# if defined ]AT_YYLTYPE[_IS_TRIVIAL && ]AT_YYLTYPE[_IS_TRIVIAL
472/* Print *YYLOCP on YYO. */
473__attribute__((__unused__))
474static unsigned
475location_print (FILE *yyo, ]AT_YYLTYPE[ const * const yylocp)
476{
477 unsigned res = 0;
478 int end_col = 0 != yylocp->last_column ? yylocp->last_column - 1 : 0;
479 if (0 <= yylocp->first_line)
480 {
481 res += fprintf (yyo, "%d", yylocp->first_line);
482 if (0 <= yylocp->first_column)
483 res += fprintf (yyo, ".%d", yylocp->first_column);
484 }
485 if (0 <= yylocp->last_line)
486 {
487 if (yylocp->first_line < yylocp->last_line)
488 {
489 res += fprintf (yyo, "-%d", yylocp->last_line);
490 if (0 <= end_col)
491 res += fprintf (yyo, ".%d", end_col);
492 }
493 else if (0 <= end_col && yylocp->first_column < end_col)
494 res += fprintf (yyo, "-%d", end_col);
495 }
496 return res;
497}
498#endif
499]])[
74909941 500/* A C error reporting function. */
6d559547
AD
501static
502]AT_YYERROR_PROTOTYPE[
3472de82
AD
503{]m4_bpatsubst(m4_defn([AT_PARSE_PARAMS]),
504 [[^,]+[^A-Za-z_0-9]\([A-Za-z_][A-Za-z_0-9]*\), *], [
505 YYUSE(\1);])dnl
506AT_YYERROR_SEES_LOC_IF([[
f0f95a50 507 LOCATION_PRINT (stderr, ]AT_LOC[);
74909941 508 fprintf (stderr, ": ");]])[
55f48c48 509 fprintf (stderr, "%s\n", msg);
6112cb18 510}]])
55f48c48 511
55f48c48 512
6112cb18 513m4_define([AT_MAIN_DEFINE(c)],
3ef9fa8f 514[[#include <stdlib.h> /* getenv. */
f42c012f 515#include <string.h> /* strcmp. */
3ef9fa8f 516int
f42c012f
AD
517main (int argc, char const* argv[])
518{]AT_DEBUG_IF([[
519 if (getenv("YYDEBUG")
520 || (argc == 2
521 && (!strcmp (argv[1], "-d") || !strcmp (argv[1], "--debug"))))
522 yydebug |= 1;]], [[
523 (void) argc;
524 (void) argv;]])[
56b91ae0 525 return ]AT_NAME_PREFIX[parse ();
6112cb18
AD
526}]])
527
528
529## ----- ##
530## C++. ##
531## ----- ##
532
533# No need to declare, it's part of the class interface.
534m4_define([AT_YYERROR_DECLARE(c++)], [])
535m4_define([AT_YYERROR_DECLARE_EXTERN(c++)], [])
536
537m4_define([AT_YYERROR_DEFINE(c++)],
538[[/* A C++ error reporting function. */
539void
540]AT_NAME_PREFIX[::parser::error (]AT_LOCATION_IF([[const location_type& l, ]])[const std::string& m)
541{
542 std::cerr << ]AT_LOCATION_IF([l << ": " << ])[m << std::endl;
543}]])
544
545
546m4_define([AT_MAIN_DEFINE(c++)],
3ef9fa8f 547[[#include <cstdlib> // getenv.
f42c012f 548#include <cstring> // strcmp.
3ef9fa8f 549int
f42c012f 550main (int argc, char const* argv[])
3ef9fa8f 551{
56b91ae0 552 ]AT_NAME_PREFIX[::parser p;]AT_DEBUG_IF([[
f42c012f
AD
553 if (getenv("YYDEBUG")
554 || (argc == 2
555 && (!strcmp (argv[1], "-d") || !strcmp (argv[1], "--debug"))))
556 p.set_debug_level (true);]], [[
557 (void) argc;
558 (void) argv;]])[
559 return p.parse ();
6112cb18
AD
560}]])
561
562
563
564## ------ ##
565## Java. ##
566## ------ ##
567
568m4_define([AT_YYERROR_DEFINE(java)],
569[AT_LOCATION_IF([[public void yyerror (Calc.Location l, String s)
570{
571 if (l == null)
572 System.err.println (s);
573 else
574 System.err.println (l + ": " + s);
575 }
576]], [[
577 public void yyerror (String s)
578 {
579 System.err.println (s);
580 }
581]])])
582
583m4_define([AT_MAIN_DEFINE(java)],
3ef9fa8f
AD
584[[class input
585{
586 public static void main (String args[]) throws IOException
587 {
588 YYParser p = new YYParser ();
589 p.parse ();
590 }
6112cb18
AD
591}]])
592
3ef9fa8f
AD
593
594
55f48c48
AD
595## --------------- ##
596## Running Bison. ##
597## --------------- ##
598
da730230
JD
599# AT_BISON_CHECK(BISON_ARGS, [OTHER_AT_CHECK_ARGS])
600# -------------------------------------------------
a122efad
AD
601# High-level routine that may call bison several times, under different
602# conditions.
603#
4c9b8f13 604# Check Bison by invoking 'bison BISON_ARGS'. BISON_ARGS should not contain
c39014ae
JD
605# shell constructs (such as redirection or pipes) that would prevent
606# appending additional command-line arguments for bison. OTHER_AT_CHECK_ARGS
607# are the usual remaining arguments to AT_CHECK: STATUS, STDOUT, etc.
da730230
JD
608#
609# This macro or AT_BISON_CHECK_NO_XML should always be used whenever invoking
610# Bison in the test suite. For now it ensures that:
611#
612# 1. Valgrind doesn't report reachable memory when Bison is expected to have
613# a non-zero exit status since Bison doesn't always try to free all memory
614# in that case.
615#
616# 2. In the case of maintainer-xml-check, XML/XSLT output is compared with
617# --graph and --report=all output for every working grammar.
2bfcac9a
JD
618#
619# 3. If stderr contains a warning, -Werror and --warnings=error
620# convert the warning to an error.
c39014ae
JD
621#
622# 4. If stderr contains a warning, -Wnone and --warnings=none suppress it.
da730230 623m4_define([AT_BISON_CHECK],
a122efad 624[m4_null_if([$2], [AT_BISON_CHECK_XML($@)])
da730230
JD
625AT_BISON_CHECK_NO_XML($@)])
626
a122efad
AD
627# AT_BISON_CHECK_(BISON_ARGS, [OTHER_AT_CHECK_ARGS])
628# --------------------------------------------------
629# Low-level macro to run bison once.
630m4_define([AT_BISON_CHECK_],
9c4788b7 631[AT_CHECK(AT_QUELL_VALGRIND[[ bison -fno-caret ]]$@)])
a122efad
AD
632
633
e4828e23
AD
634# AT_BISON_CHECK_WARNINGS(BISON_ARGS, [OTHER_AT_CHECK_ARGS])
635# ----------------------------------------------------------
636# Check that warnings (if some are expected) are correctly
637# turned into errors with -Werror, etc.
e4678430
AD
638#
639# When -Wno-error is used, the rules are really different, don't try.
e4828e23
AD
640m4_define([AT_BISON_CHECK_WARNINGS],
641[m4_if(m4_bregexp([$4], [: warning: ]), [-1], [],
e4678430
AD
642 m4_bregexp([$1], [-Wno-error=]), [-1],
643 [m4_null_if([$2], [AT_BISON_CHECK_WARNINGS_($@)])])])
e4828e23
AD
644
645m4_define([AT_BISON_CHECK_WARNINGS_],
94843f0a
AD
646[[# Defining POSIXLY_CORRECT causes bison to complain if options are
647# added after the grammar file name, so skip these checks in that
648# case.
0a36880a 649if test "$POSIXLY_CORRECT_IS_EXPORTED" = false; then
5192fd5d 650 ]AT_SAVE_SPECIAL_FILES[
e4a14879 651
8f6bbe0c
TR
652 # To avoid expanding it repeatedly, store specified stdout.
653 ]AT_DATA([expout], [$3])[
e4a14879 654
8f6bbe0c 655 # Run with -Werror.
e4828e23 656 ]AT_BISON_CHECK_([$1[ -Werror]], [[1]], [expout], [stderr])[
e4a14879 657
8f6bbe0c
TR
658 # Build expected stderr up to and including the "warnings being
659 # treated as errors" message.
e89d8806
TR
660 ]AT_DATA([[experr]], [$4])[
661 $PERL -pi -e 's{(.*): warning: (.*)\[-W(.*)\]$}
662 {$][1: error: $][2\@<:@-Werror=$][3@:>@}' experr
663 ]AT_CHECK([[sed 's,.*/$,,' stderr 1>&2]], [[0]], [[]], [experr])[
8f6bbe0c
TR
664
665 # Now check --warnings=error.
666 cp stderr experr
e4828e23 667 ]AT_BISON_CHECK_([$1[ --warnings=error]], [[1]], [expout], [experr])[
e4a14879 668
8f6bbe0c
TR
669 # Now check -Wnone and --warnings=none by making sure that
670 # -Werror doesn't change the exit status when -Wnone or
671 # --warnings=none is specified.
e4828e23
AD
672 ]AT_BISON_CHECK_([$1[ -Wnone -Werror]], [[0]], [expout])[
673 ]AT_BISON_CHECK_([$1[ --warnings=none -Werror]], [[0]], [expout])[
e4a14879 674
8f6bbe0c 675 ]AT_RESTORE_SPECIAL_FILES[
e4828e23 676fi]dnl
2bfcac9a 677])
da730230 678
da730230
JD
679# AT_BISON_CHECK_NO_XML(BISON_ARGS, [OTHER_AT_CHECK_ARGS])
680# --------------------------------------------------------
681# Same as AT_BISON_CHECK except don't perform XML/XSLT checks. This is useful
682# when a tortured grammar's XML is known to be too large for xsltproc to
683# handle.
684m4_define([AT_BISON_CHECK_NO_XML],
9c4788b7 685[AT_CHECK(m4_null_if([$2], [], [AT_QUELL_VALGRIND ])[[bison -fno-caret ]]$@)
e4828e23 686AT_BISON_CHECK_WARNINGS($@)])
da730230
JD
687
688# AT_BISON_CHECK_XML(BISON_ARGS, [OTHER_AT_CHECK_ARGS])
689# -----------------------------------------------------
690# Run AT_BISON_CHECK's XML/XSLT checks if $BISON_TEST_XML=1 and $XSLTPROC is
691# defined. It doesn't make sense to invoke this macro if Bison is expected to
692# have a non-zero exit status.
693m4_define([AT_BISON_CHECK_XML],
035810ed
AD
694[[if test x"$BISON_TEST_XML" = x1 && test x"$XSLTPROC" != x""; then]
695 AT_SAVE_SPECIAL_FILES
696 [mkdir xml-tests]
da730230
JD
697 m4_pushdef([AT_BISON_ARGS],
698 [m4_bpatsubsts([[$1]],
699 [--report(-file)?=[^][ ]*], [],
700 [--graph=[^][ ]*], [],
701 [--xml=[^][ ]*], [])])dnl
702 # Don't combine these Bison invocations since we want to be sure that
703 # --report=all isn't required to get the full XML file.
a122efad 704 AT_BISON_CHECK_([[--report=all --report-file=xml-tests/test.output \
da730230
JD
705 --graph=xml-tests/test.dot ]]AT_BISON_ARGS,
706 [[0]], [ignore], [ignore])
a122efad 707 AT_BISON_CHECK_([[--xml=xml-tests/test.xml ]]AT_BISON_ARGS,
da730230
JD
708 [[0]], [ignore], [ignore])
709 m4_popdef([AT_BISON_ARGS])dnl
247b8c21 710 [cp xml-tests/test.output expout]
da730230
JD
711 AT_CHECK([[$XSLTPROC \
712 `]]AT_QUELL_VALGRIND[[ bison --print-datadir`/xslt/xml2text.xsl \
713 xml-tests/test.xml]], [[0]], [expout])
be3517b0 714 [sort xml-tests/test.dot > expout]
da730230
JD
715 AT_CHECK([[$XSLTPROC \
716 `]]AT_QUELL_VALGRIND[[ bison --print-datadir`/xslt/xml2dot.xsl \
be3517b0 717 xml-tests/test.xml | sort]], [[0]], [expout])
035810ed
AD
718 [rm -rf xml-tests expout]
719 AT_RESTORE_SPECIAL_FILES
720[fi]])
da730230
JD
721
722# AT_QUELL_VALGRIND
723# -----------------
724# Put this before a Bison invocation to keep Valgrind from complaining about
725# reachable memory.
726#
727# Do not quote invocations of this macro within the first argument of AT_CHECK.
728# The triple quoting below will cause test cases to fail if you do. If you do
729# so anyway but also decrease the quoting below to avoid that problem, AT_CHECK
730# will then fail to shell-escape its contents when attempting to print them.
731# The testsuite verbose output, at least, will be incorrect, but nothing may
732# fail to make sure you notice.
733m4_define([AT_QUELL_VALGRIND],
734[[[VALGRIND_OPTS="$VALGRIND_OPTS --leak-check=summary --show-reachable=no"; export VALGRIND_OPTS;]]])
67a25fed 735
e4828e23
AD
736
737
67a25fed
AD
738## ------------------------ ##
739## Compiling C, C++ Files. ##
740## ------------------------ ##
741
742
743# AT_COMPILE(OUTPUT, [SOURCES = OUTPUT.c])
744# ----------------------------------------
91ce0b3a
AD
745# Compile SOURCES into OUTPUT.
746#
747# If OUTPUT does not contain '.', assume that we are linking too,
748# otherwise pass "-c"; this is a hack. The default SOURCES is OUTPUT
749# with trailing .o removed, and ".c" appended.
67a25fed 750m4_define([AT_COMPILE],
d4728d92 751[AT_CHECK([$BISON_C_WORKS], 0, ignore, ignore)
0a36880a 752AT_CHECK(m4_join([ ],
91ce0b3a
AD
753 [$CC $CFLAGS $CPPFLAGS],
754 [m4_bmatch([$1], [[.]], [-c], [$LDFLAGS])],
755 [-o $1],
756 [m4_default([$2], [m4_bpatsubst([$1], [\.o$]).c])],
757 [m4_bmatch([$1], [[.]], [], [$LIBS])]),
e9690142 758 0, [ignore], [ignore])])
67a25fed 759
b7171c45 760
07971983 761# AT_COMPILE_CXX(OUTPUT, [SOURCES = OUTPUT.cc])
91ce0b3a
AD
762# ---------------------------------------------
763# Compile SOURCES into OUTPUT. If the C++ compiler does not work,
764# ignore the test.
765#
766# If OUTPUT does not contain '.', assume that we are linking too,
767# otherwise pass "-c"; this is a hack. The default SOURCES is OUTPUT
b7171c45 768# with trailing ".o" removed, and ".cc" appended.
67a25fed
AD
769m4_define([AT_COMPILE_CXX],
770[AT_KEYWORDS(c++)
209ea708 771AT_CHECK([$BISON_CXX_WORKS], 0, ignore, ignore)
91ce0b3a
AD
772AT_CHECK(m4_join([ ],
773 [$CXX $CXXFLAGS $CPPFLAGS],
774 [m4_bmatch([$1], [[.]], [-c], [$LDFLAGS])],
775 [-o $1],
776 [m4_default([$2], [m4_bpatsubst([$1], [\.o$]).cc])],
777 [m4_bmatch([$1], [[.]], [], [$LIBS])]),
e9690142 778 0, [ignore], [ignore])])
67a25fed 779
6112cb18 780
d2060f06
JD
781# AT_JAVA_COMPILE(SOURCES)
782# ------------------------
783# Compile SOURCES into Java class files. Skip the test if java or javac
784# is not installed.
785m4_define([AT_JAVA_COMPILE],
786[AT_KEYWORDS(java)
916f26b6
AD
787AT_SKIP_IF([[test -z "$CONF_JAVAC"]])
788AT_SKIP_IF([[test -z "$CONF_JAVA"]])
d2060f06
JD
789AT_CHECK([[$SHELL ../../../javacomp.sh ]$1],
790 [[0]], [ignore], [ignore])])
67a25fed 791
6112cb18 792
2d40532b
AD
793# AT_LANG_COMPILE(OUTPUT, [SOURCES = OUTPUT.c]
794# --------------------------------------------
91ce0b3a
AD
795# Compile SOURCES into OUTPUT. Skip if compiler does not work.
796#
797# If OUTPUT does not contain '.', assume that we are linking too,
798# otherwise pass "-c"; this is a hack. The default SOURCES is OUTPUT
799# with trailing .o removed, and ".c"/".cc" appended.
6112cb18
AD
800m4_define([AT_LANG_COMPILE], [AT_LANG_DISPATCH([$0], $@)])
801m4_define([AT_LANG_COMPILE(c)], [AT_COMPILE([$1], [$2])])
802m4_define([AT_LANG_COMPILE(c++)], [AT_COMPILE_CXX([$1], [$2])])
803m4_define([AT_LANG_COMPILE(java)], [AT_JAVA_COMPILE([$1.java], [$2])])
804
2d40532b 805
6aef2e01
AD
806# AT_FULL_COMPILE(OUTPUT, [OTHER1], [OTHER2])
807# -------------------------------------------
d2060f06
JD
808# Compile OUTPUT.y to OUTPUT.c, OUTPUT.cc, or OUTPUT.java, and then
809# compile it to OUTPUT or OUTPUT.class. If OTHER is specified, compile
810# OUTPUT-OTHER.c, OUTPUT-OTHER.cc, or OUTPUT-OTHER.java to OUTPUT or
811# OUTPUT.java along with it. Relies on AT_SKEL_CC_IF and
812# AT_SKEL_JAVA_IF.
6112cb18
AD
813m4_define([AT_FULL_COMPILE], [AT_LANG_DISPATCH([$0], $@)])
814m4_define([AT_FULL_COMPILE(c)],
815[AT_BISON_CHECK([-o $1.c $1.y])
816 AT_LANG_COMPILE([$1],
817 m4_join([ ],
818 [$1.c],
819 m4_ifval($2, [[$1-$2.c]]),
820 m4_ifval($3, [[$1-$3.c]])))])
821
822m4_define([AT_FULL_COMPILE(c++)],
823[AT_BISON_CHECK([-o $1.cc $1.y])
824 AT_LANG_COMPILE([$1],
825 m4_join([ ],
826 [$1.cc],
827 m4_ifval($2, [[$1-$2.cc]]),
828 m4_ifval($3, [[$1-$3.cc]])))])
829
830m4_define([AT_FULL_COMPILE(java)],
831[AT_BISON_CHECK([-o $1.java $1.y])
832 AT_LANG_COMPILE([$1],
833 m4_join([ ],
834 [$1.java],
835 m4_ifval($2, [[$1-$2.java]]),
836 m4_ifval($3, [[$1-$3.java]])))])
837
7ca2266a 838
67a25fed 839
8aaa0c2f
AD
840
841# AT_SKIP_IF_CANNOT_LINK_C_AND_CXX
842# --------------------------------
843# Check that we can link together C and C++ objects.
844m4_define([AT_SKIP_IF_CANNOT_LINK_C_AND_CXX],
845[AT_DATA([c-and-cxx.h],
846[[#ifdef __cplusplus
847extern "C"
848{
849#endif
850 int fortytwo (void);
851#ifdef __cplusplus
852}
853#endif
854]])
855AT_DATA([c-only.c],
856[[#include "c-and-cxx.h"
857int
858main (void)
859{
860 return fortytwo () == 42 ? 0 : 1;
861}
862]])
863AT_DATA([cxx-only.cc],
864[[#include "c-and-cxx.h"
865int fortytwo ()
866{
867 return 42;
868}
869]])
870AT_COMPILE([c-only.o], [c-only.c])
871AT_COMPILE_CXX([cxx-only.o], [cxx-only.cc])
872AT_CHECK([$CXX $CXXFLAGS $CPPFLAGS $LDFLAGS c-only.o cxx-only.o -o c-and-cxx ||
873 exit 77], [ignore], [ignore])
2bb8f621 874AT_PARSER_CHECK([./c-and-cxx])
8aaa0c2f
AD
875])
876
877
02681666
AD
878# AT_SKIP_IF_EXCEPTION_SUPPORT_IS_POOR
879# ------------------------------------
880# Check that we can expect exceptions to be handled properly.
881# GCC 4.3 and 4.4 fail https://trac.macports.org/ticket/40853.
882m4_define([AT_SKIP_IF_EXCEPTION_SUPPORT_IS_POOR],
883[AT_DATA_SOURCE([exception.cc],
884[[#include <iostream>
885#include <stdexcept>
886
887void foo()
888{
889 try
890 {
891 throw std::runtime_error("foo");
892 }
893 catch (...)
894 {
895 std::cerr << "Inner caught" << std::endl;
896 throw;
897 }
898}
899
900int main()
901{
902 try
903 {
904 foo();
905 }
906 catch (...)
907 {
908 std::cerr << "Outer caught" << std::endl;
909 return 0;
910 }
911 return 1;
912}
913]])
914AT_COMPILE_CXX([exception])
915# The "empty" quadrigraph is to protect from cfg.mk's
916# sc_at_parser_check.
917AT_CHECK([@&t@./exception || exit 77], [0], [], [ignore])
918])
919
920
67a25fed
AD
921## ---------------------------- ##
922## Running a generated parser. ##
923## ---------------------------- ##
924
95e343fe 925
e0ac9b4b
JD
926# AT_PARSER_CHECK(COMMAND, EXIT-STATUS, EXPOUT, EXPERR, [PRE])
927# ------------------------------------------------------------
4c9b8f13 928# So that we can run './testsuite PREPARSER='valgrind -q' for instance.
95e343fe
AD
929#
930# Get rid of spurious messages when compiled with --coverage:
931# +profiling:/[...]/lib/fprintf.gcda:Merge mismatch for summaries
67a25fed 932m4_define([AT_PARSER_CHECK],
95e343fe
AD
933[AT_CHECK([$5 $PREPARSER $1], [$2], [$3], [stderr])
934AT_CHECK([sed >&2 -e '/^profiling:.*:Merge mismatch for summaries/d' stderr],
935 [0], [], [$4])
936])
937
1f7a61ff 938
d2060f06
JD
939# AT_JAVA_PARSER_CHECK(COMMAND, EXIT-STATUS, EXPOUT, EXPERR, [PRE])
940# -----------------------------------------------------------------
941m4_define([AT_JAVA_PARSER_CHECK],
942[AT_CHECK([$5[ $SHELL ../../../javaexec.sh ]$1], [$2], [$3], [$4])])
943
95e343fe 944
7254f6a8
JD
945# AT_TEST_TABLES_AND_PARSE(TITLE, COND-VALUE, TEST-SPEC,
946# DECLS, GRAMMAR, INPUT,
947# BISON-STDERR, TABLES-OR-LAST-STATE,
948# [OTHER-CHECKS],
949# [PARSER-EXIT-VALUE],
950# [PARSER-STDOUT], [PARSER-STDERR])
951# -------------------------------------------------------------
952# Using TITLE as the test group title, check the generated parser tables
953# and parser for a specified grammar file under a condition labeled by
954# COND-VALUE.
955#
956# TEST-SPEC is a comma-delimited list of attributes of this test. Each
957# recognized attribute is described below where it is relevant.
958#
959# Insert DECLS and GRAMMAR into the declarations and grammar section of
960# the grammar file. Insert basic yyerror, yylex, and main function
961# definitions as well. Hardcode yylex to return the (possibly empty)
962# comma-delimited series of tokens in INPUT followed by token 0.
963#
964# If TEST-SPEC contains the attribute no-xml, then invoke bison using
965# AT_BISON_CHECK_NO_XML. Otherwise, invoke bison using AT_BISON_CHECK.
966# On the bison command-line, specify `--report=all --defines'. Check
967# that Bison exits with value 0, has no stdout, and has stderr
968# BISON-STDERR.
969#
4c9b8f13 970# If TEST-SPEC contains the attribute 'last-state', check that the value
7254f6a8
JD
971# of TABLES-OR-LAST-STATE is the index of the last state generated for
972# the grammar; in other words, check the number of states (minus one).
4c9b8f13 973# Otherwise, check that everything in the '.output' file starting with
7254f6a8
JD
974# the definition of state 0 is the same as the entire value of
975# TABLES-OR-LAST-STATE.
976#
977# Expand the M4 in OTHER-CHECKS to perform additional checks of the
4c9b8f13
AD
978# '.output' file, which is named 'input.output', and/or grammar file,
979# which is named 'input.y'.
7254f6a8
JD
980#
981# Finally, compile the generated parser and then run it using
982# AT_PARSER_CHECK with PARSER-EXIT-VALUE, PARSER-STDOUT, and
983# PARSER-STDERR as the 2nd-4th arguments.
984#
985# As a precondition, you must properly double-quote all arguments that
986# are to be interpreted as strings.
987#
988# AT_COND_CASE (when appearing in single-quoted segments of arguments)
989# invokes m4_case with its own arguments but COND-VALUE inserted as the
990# first argument. This is useful, for example, when wrapping multiple
991# AT_TEST_TABLES_AND_PARSE invocations, each representing a different
992# condition, in another macro.
993#
994# For example:
995#
996# # AT_TEST_SYNTAX_ERROR(DESCRIPTION, DECLS, GRAMMAR, INPUT, LAST-STATE,
997# # PARSER-EXIT-VALUE, PARSER-STDOUT, PARSER-STDERR)
998# # ---------------------------------------------------------------------
999# m4_define([AT_TEST_SYNTAX_ERROR],
1000# [
1001# AT_TEST_TABLES_AND_PARSE([$1[ with %error-verbose]], [[verbose]],
1002# [[last-state]],
1003# [[%error-verbose ]$2], [$3], [$4],
1004# [[]], [$5], [], [$6], [$7], [$8])
1005# AT_TEST_TABLES_AND_PARSE([$1[ with no %error-verbose]], [[no verbose]],
1006# [[last-state]],
1007# [$2], [$3], [$4],
1008# [[]], [$5], [], [$6], [$7], [$8])
1009# ])
1010#
1011# AT_TEST_SYNTAX_ERROR([[Single Char Grammar]],
1012# [[%token 'b']], [[start: 'a' ;]], [['a', 'b']],
1013# [[3]],
1014# [[1]], [[]],
1015# [AT_COND_CASE([[no verbose]],
1016# [[syntax error
1017# ]],
1018# [[syntax error, unexpected 'b', expecting $end
1019# ]])])
1020m4_define([AT_TEST_TABLES_AND_PARSE],
c4be5517 1021[m4_pushdef([AT_COND_CASE], [m4_case([$2], $][@)])
7254f6a8 1022
c4be5517 1023AT_SETUP([$1])
55f48c48 1024AT_BISON_OPTION_PUSHDEFS([$4])
7254f6a8
JD
1025AT_DATA_GRAMMAR([[input.y]],
1026[[%code {
55f48c48
AD
1027 ]AT_YYERROR_DECLARE[
1028 ]AT_YYLEX_DECLARE[
7254f6a8
JD
1029}
1030
c4be5517 1031]$4[
7254f6a8
JD
1032
1033%%
1034
c4be5517 1035]$5[
7254f6a8
JD
1036
1037%%
55f48c48 1038]AT_YYERROR_DEFINE[
7254f6a8
JD
1039static int
1040yylex (void)
1041{
1042 static int const input[] = {
c4be5517 1043 ]m4_if([$6], [], [], [$6], [[]], [], [$6[, ]])[0
7254f6a8
JD
1044 };
1045 static int const *inputp = input;
1046 return *inputp++;
1047}
1048
f0f95a50 1049]AT_MAIN_DEFINE[
7254f6a8
JD
1050]])
1051
c4be5517
JD
1052# In some versions of Autoconf, AT_CHECK invokes AS_ESCAPE before
1053# expanding macros, so it corrupts some special characters in the
1054# macros. To avoid this, expand now and pass it the result with proper
cbdb6d91 1055# string quotation. Assume args 7 through 12 expand to properly quoted
c4be5517 1056# strings.
7254f6a8 1057
c4be5517 1058m4_if(m4_index(m4_quote($3), [no-xml]), -1,
7254f6a8 1059 [AT_BISON_CHECK],
cc2235ac 1060 [AT_BISON_CHECK_NO_XML])([[-Wall --report=all --defines -o input.c input.y]],
c4be5517 1061 [0], [], m4_dquote($7))
7254f6a8 1062
c4be5517 1063m4_if(m4_index(m4_quote($3), [last-state]), -1,
d42fe46e 1064 [AT_CHECK([[sed -n '/^State 0$/,$p' input.output]], [[0]],
c4be5517 1065 m4_dquote($8))],
d42fe46e 1066 [AT_CHECK([[sed -n 's/^State //p' input.output | tail -1]], [[0]],
c4be5517 1067 m4_dquote($8)[[
7254f6a8 1068]])])
7254f6a8 1069
c4be5517 1070$9
7254f6a8 1071
8ec3110a
AD
1072# Canonical LR generates very large tables, resulting in very long
1073# files with #line directives that may overflow what the standards
1074# (C90 and C++98) guarantee: 32767. In that case, GCC's -pedantic
1075# will issue an error.
1076#
1077# There is no "" around `wc` since some indent the result.
1078m4_bmatch([$4], [%define lr.type canonical-lr],
1079[if test 32767 -lt `wc -l < input.c`; then
df1ca1b0
AD
1080 CFLAGS=`echo " $CFLAGS " | sed -e 's/ -pedantic / /'`
1081 CXXFLAGS=`echo " $CXXFLAGS " | sed -e 's/ -pedantic / /'`
8ec3110a 1082fi])
7254f6a8
JD
1083AT_COMPILE([[input]])
1084
c4be5517
JD
1085AT_PARSER_CHECK([[./input]],
1086 m4_ifval([$10], [m4_dquote($10)]),
1087 m4_ifval([$11], [m4_dquote($11)]),
1088 m4_ifval([$12], [m4_dquote($12)]))
7254f6a8 1089
55f48c48 1090AT_BISON_OPTION_POPDEFS
7254f6a8
JD
1091AT_CLEANUP
1092
1093m4_popdef([AT_COND_CASE])])
1f7a61ff
AD
1094
1095
1096
781eaf90 1097
1f7a61ff
AD
1098## ----------------------- ##
1099## Launch the test suite. ##
1100## ----------------------- ##
1101
1102AT_INIT
1103
781eaf90
AD
1104# AT_SETUP([TITLE])
1105# -----------------
1106# Redefine AT_SETUP to be more concise. Must be done after AT_INIT.
1107m4_copy_force([AT_SETUP], [B4_SETUP])
1108m4_define([AT_SETUP],
1109[B4_SETUP(m4_expand([AT_SETUP_STRIP([[$1]])]))])
1110
ac3f2e33
AD
1111# Cannot assign CC and CFLAGS here, since atlocal is loaded after
1112# options are processed, so we don't know the value of CXX and
1113# CXXFLAGS yet.
1114#
1115# Note that it also means that command line values for CXX and
1116# CXXFLAGS will not be propagated to CC and CFLAGS.
1117AT_ARG_OPTION([compile-c-with-cxx],
1118 [compile C parsers with the C++ compiler])
1119
1120AT_COLOR_TESTS
1121
1f7a61ff 1122AT_TESTED([bison])