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