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