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