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