]> git.saurik.com Git - bison.git/blame - tests/calc.at
Remove b4_root related material: failure experiment
[bison.git] / tests / calc.at
CommitLineData
82c53be4 1# Simple calculator. -*- Autotest -*-
1576d44d 2# Copyright (C) 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
bfb07874 3
342b8b6e
AD
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation; either version 2, or (at your option)
7# any later version.
bfb07874 8
342b8b6e
AD
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
bfb07874 13
342b8b6e
AD
14# You should have received a copy of the GNU General Public License
15# along with this program; if not, write to the Free Software
16# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
17# 02111-1307, USA.
bfb07874 18
bfb07874
AD
19## ---------------------------------------------------- ##
20## Compile the grammar described in the documentation. ##
21## ---------------------------------------------------- ##
22
23
24# ------------------------- #
25# Helping Autotest macros. #
26# ------------------------- #
27
28
2a8d363a
AD
29# _AT_DATA_CALC_Y($1, $2, $3, [BISON-DIRECTIVES])
30# -----------------------------------------------
bfb07874
AD
31# Produce `calc.y'. Don't call this macro directly, because it contains
32# some occurrences of `$1' etc. which will be interpreted by m4. So
33# you should call it with $1, $2, and $3 as arguments, which is what
34# AT_DATA_CALC_Y does.
342b8b6e
AD
35m4_define([_AT_DATA_CALC_Y],
36[m4_if([$1$2$3], $[1]$[2]$[3], [],
37 [m4_fatal([$0: Invalid arguments: $@])])dnl
9501dc6e 38AT_DATA_GRAMMAR([calc.y],
bfb07874 39[[/* Infix notation calculator--calc */
2a8d363a 40]$4[
bfb07874
AD
41%{
42#include <stdio.h>
2ce10144 43
6e26ca8c
PE
44#include <stdlib.h>
45#include <string.h>
82c53be4
PE
46#if HAVE_UNISTD_H
47# include <unistd.h>
48#else
49# undef alarm
50# define alarm(seconds) /* empty */
51#endif
bfb07874 52#include <ctype.h>
bfb07874 53
0dd1580a 54/* Exercise pre-prologue dependency to %union. */
caf37a36 55typedef int semantic_value;
0dd1580a 56
caf37a36 57static semantic_value global_result = 0;
4e8c79eb 58static int global_count = 0;
bfb07874
AD
59%}
60
5a08f1ce 61/* Exercise %union. */
213e640e
AD
62%union
63{
caf37a36 64 semantic_value ival;
213e640e
AD
65};
66
c19988b7 67%{
c19988b7 68static int power (int base, int exponent);
67a25fed
AD
69]AT_LALR1_CC_IF([typedef yy::Location YYLTYPE;],
70[/* yyerror receives the location if:
2a8d363a
AD
71 - %location & %pure & %glr
72 - %location & %pure & %yacc & %parse-param. */
d02b25f9 73static void yyerror (AT_YYERROR_ARG_LOC_IF([YYLTYPE *yylloc, ])
caf37a36 74 AT_PARAM_IF([semantic_value *result, int *count, ])
93724f13 75 const char *s
d02b25f9 76 );])[
7548fed2
AD
77static int yylex (]AT_LEX_FORMALS[);
78static int yygetc (]AT_LEX_FORMALS[);
79static void yyungetc (]AT_LEX_PRE_FORMALS[ int c);
c19988b7
AD
80%}
81
6b7e85b9 82/* Bison Declarations */
c19988b7 83%token CALC_EOF 0 "end of input"
213e640e
AD
84%token <ival> NUM "number"
85%type <ival> exp
bfb07874
AD
86
87%nonassoc '=' /* comparison */
88%left '-' '+'
89%left '*' '/'
90%left NEG /* negation--unary minus */
91%right '^' /* exponentiation */
92
93/* Grammar follows */
94%%
95input:
b7c49edf 96 line
2a8d363a 97| input line { ]AT_PARAM_IF([++*count; ++global_count;])[ }
bfb07874
AD
98;
99
100line:
c19988b7 101 '\n'
2a8d363a 102| exp '\n' { ]AT_PARAM_IF([*result = global_result = $1;])[ }
bfb07874
AD
103;
104
105exp:
106 NUM { $$ = $1; }
107| exp '=' exp
108 {
2a8d363a
AD
109 if ($1 != $3)
110 fprintf (stderr, "calc: error: %d != %d\n", $1, $3);
111 $$ = $1;
bfb07874
AD
112 }
113| exp '+' exp { $$ = $1 + $3; }
114| exp '-' exp { $$ = $1 - $3; }
115| exp '*' exp { $$ = $1 * $3; }
116| exp '/' exp { $$ = $1 / $3; }
117| '-' exp %prec NEG { $$ = -$2; }
118| exp '^' exp { $$ = power ($1, $3); }
119| '(' exp ')' { $$ = $2; }
0b86fc41
AD
120| '(' error ')' { $$ = 1111; }
121| '!' { YYERROR; }
82c53be4 122| '-' error { YYERROR; }
bfb07874
AD
123;
124%%
125/* The input. */
4e8c79eb 126static FILE *yyin;
bfb07874 127
7548fed2 128]AT_LALR1_CC_IF(
68e11668 129[/* A C++ error reporting function. */
7548fed2
AD
130void
131yy::Parser::error_ ()
132{
d02b25f9 133 std::cerr << AT_LOCATION_IF([location << ": " << ])message << std::endl;
7548fed2
AD
134}
135
136int
caf37a36 137yyparse (AT_PARAM_IF([semantic_value *result, int *count]))
7548fed2 138{
451364ed 139 yy::Parser parser (!!YYDEBUG[]AT_PARAM_IF([, result, count]));
7548fed2
AD
140 return parser.parse ();
141}
142],
143[static void
144yyerror (AT_YYERROR_ARG_LOC_IF([YYLTYPE *yylloc, ])
caf37a36 145 AT_PARAM_IF([semantic_value *result, int *count, ])
7548fed2
AD
146 const char *s)
147{
148AT_PARAM_IF([(void) result; (void) count;])
149AT_YYERROR_SEES_LOC_IF([
150 fprintf (stderr, "%d.%d",
151 AT_LOC.first_line, AT_LOC.first_column);
152 if (AT_LOC.first_line != AT_LOC.last_line)
153 fprintf (stderr, "-%d.%d",
154 AT_LOC.last_line, AT_LOC.last_column - 1);
155 else if (AT_LOC.first_column != AT_LOC.last_column - 1)
156 fprintf (stderr, "-%d",
157 AT_LOC.last_column - 1);
158 fprintf (stderr, ": ");])
159 fprintf (stderr, "%s\n", s);
160}])[
161
b7c49edf 162
2a8d363a 163]AT_LOCATION_IF([
b7c49edf 164static YYLTYPE last_yylloc;
2a8d363a 165])[
bfb07874 166static int
7548fed2 167yygetc (]AT_LEX_FORMALS[)
bfb07874
AD
168{
169 int res = getc (yyin);
7548fed2 170 ]AT_USE_LEX_ARGS[;
2a8d363a 171]AT_LOCATION_IF([
7548fed2 172 last_yylloc = AT_LOC;
bfb07874
AD
173 if (res == '\n')
174 {
7548fed2
AD
175AT_LALR1_CC_IF(
176[ AT_LOC.end.line++;
177 AT_LOC.end.column = 0;],
178[ AT_LOC.last_line++;
179 AT_LOC.last_column = 0;])
bfb07874
AD
180 }
181 else
7548fed2
AD
182AT_LALR1_CC_IF(
183[ AT_LOC.end.column++;],
184[ AT_LOC.last_column++;])
2a8d363a 185])[
bfb07874
AD
186 return res;
187}
188
189
190static void
7548fed2 191yyungetc (]AT_LEX_PRE_FORMALS[ int c)
bfb07874 192{
7548fed2 193 ]AT_USE_LEX_ARGS[;
2a8d363a 194]AT_LOCATION_IF([
bfb07874 195 /* Wrong when C == `\n'. */
7548fed2 196 AT_LOC = last_yylloc;
2a8d363a 197])[
bfb07874
AD
198 ungetc (c, yyin);
199}
200
201static int
7548fed2 202read_signed_integer (]AT_LEX_FORMALS[)
bfb07874 203{
7548fed2 204 int c = yygetc (]AT_LEX_ARGS[);
bfb07874
AD
205 int sign = 1;
206 int n = 0;
207
7548fed2 208 ]AT_USE_LEX_ARGS[;
bfb07874
AD
209 if (c == '-')
210 {
7548fed2 211 c = yygetc (]AT_LEX_ARGS[);
bfb07874
AD
212 sign = -1;
213 }
214
215 while (isdigit (c))
216 {
217 n = 10 * n + (c - '0');
7548fed2 218 c = yygetc (]AT_LEX_ARGS[);
bfb07874
AD
219 }
220
7548fed2 221 yyungetc (]AT_LEX_PRE_ARGS[ c);
bfb07874
AD
222
223 return sign * n;
224}
225
226
227
228/*---------------------------------------------------------------.
229| Lexical analyzer returns an integer on the stack and the token |
230| NUM, or the ASCII character read if not a number. Skips all |
231| blanks and tabs, returns 0 for EOF. |
232`---------------------------------------------------------------*/
233
234static int
7548fed2 235yylex (]AT_LEX_FORMALS[)
bfb07874 236{
c19988b7 237 static int init = 1;
bfb07874
AD
238 int c;
239
c19988b7
AD
240 if (init)
241 {
242 init = 0;
7548fed2
AD
243]AT_LALR1_CC_IF([],
244[AT_LOCATION_IF([
245 AT_LOC.last_column = 0;
246 AT_LOC.last_line = 1;
247])])[
c19988b7
AD
248 }
249
d02b25f9 250]AT_LOCATION_IF([AT_LALR1_CC_IF(
7548fed2 251[ AT_LOC.begin = AT_LOC.end;],
d02b25f9 252[ AT_LOC.first_column = AT_LOC.last_column;
7548fed2
AD
253 AT_LOC.first_line = AT_LOC.last_line;
254])])[
bfb07874
AD
255
256 /* Skip white space. */
7548fed2 257 while ((c = yygetc (]AT_LEX_ARGS[)) == ' ' || c == '\t')
bfb07874 258 {
d02b25f9 259]AT_LOCATION_IF([AT_LALR1_CC_IF(
7548fed2 260[ AT_LOC.begin = AT_LOC.end;],
d02b25f9 261[ AT_LOC.first_column = AT_LOC.last_column;
7548fed2
AD
262 AT_LOC.first_line = AT_LOC.last_line;
263])])[
bfb07874
AD
264 }
265
266 /* process numbers */
267 if (c == '.' || isdigit (c))
268 {
7548fed2
AD
269 yyungetc (]AT_LEX_PRE_ARGS[ c);
270 ]AT_VAL[.ival = read_signed_integer (]AT_LEX_ARGS[);
bfb07874
AD
271 return NUM;
272 }
273
274 /* Return end-of-file. */
275 if (c == EOF)
6b7e85b9 276 return CALC_EOF;
bfb07874
AD
277
278 /* Return single chars. */
279 return c;
280}
281
282static int
283power (int base, int exponent)
284{
285 int res = 1;
286 if (exponent < 0)
287 exit (1);
288 for (/* Niente */; exponent; --exponent)
289 res *= base;
290 return res;
291}
292
7548fed2 293
bfb07874 294int
342b8b6e 295main (int argc, const char **argv)
bfb07874 296{
caf37a36 297 semantic_value result = 0;
e7cb57c0 298 int count = 0;
4e8c79eb 299 int status;
342b8b6e 300
82c53be4 301 alarm (10);
342b8b6e 302 if (argc == 2)
bfb07874
AD
303 yyin = fopen (argv[1], "r");
304 else
305 yyin = stdin;
306
342b8b6e 307 if (!yyin)
bfb07874
AD
308 {
309 perror (argv[1]);
310 exit (1);
311 }
312
d02b25f9
AD
313]AT_LALR1_CC_IF([], [m4_bmatch([$4], [%debug],
314[ yydebug = 1;])])[
b0f98b10 315 status = yyparse (]AT_PARAM_IF([&result, &count])[);
63d0fb9c
PE
316 if (global_result != result)
317 abort ();
318 if (global_count != count)
319 abort ();
b0f98b10 320 return status;
bfb07874
AD
321}
322]])
323])# _AT_DATA_CALC_Y
324
325
326# AT_DATA_CALC_Y([BISON-OPTIONS])
327# -------------------------------
328# Produce `calc.y'.
342b8b6e 329m4_define([AT_DATA_CALC_Y],
9e32add8 330[_AT_DATA_CALC_Y($[1], $[2], $[3], [$1])
f50adbbd 331])
bfb07874
AD
332
333
334
342b8b6e
AD
335# _AT_CHECK_CALC(BISON-OPTIONS, INPUT, [NUM-STDERR-LINES = 0])
336# ------------------------------------------------------------
bfb07874 337# Run `calc' on INPUT and expect no STDOUT nor STDERR.
342b8b6e 338#
f50adbbd
AD
339# If BISON-OPTIONS contains `%debug' but not `%glr-parser', then
340# NUM-STDERR-LINES is the number of expected lines on stderr.
341#
342# We don't count GLR's traces yet, since its traces are somewhat
343# different from LALR's.
342b8b6e
AD
344m4_define([_AT_CHECK_CALC],
345[AT_DATA([[input]],
346[[$2
347]])
f50adbbd
AD
348AT_PARSER_CHECK([./calc input], 0, [], [stderr])
349m4_bmatch([$1],
350 [%debug.*%glr\|%glr.*%debug],
351 [],
352 [%debug],
353 [AT_CHECK([wc -l <stderr | sed 's/[[^0-9]]//g'], 0, [$3
354])])
342b8b6e
AD
355])
356
357
b0f98b10
AD
358# _AT_CHECK_CALC_ERROR(BISON-OPTIONS, EXIT-STATUS, INPUT,
359# [NUM-DEBUG-LINES],
2a8d363a 360# [VERBOSE-AND-LOCATED-ERROR-MESSAGE])
b0f98b10 361# ---------------------------------------------------------
6e649e65 362# Run `calc' on INPUT, and expect a `syntax error' message.
342b8b6e 363#
b7c49edf
AD
364# If INPUT starts with a slash, it is used as absolute input file name,
365# otherwise as contents.
366#
9e32add8 367# If BISON-OPTIONS contains `%location', then make sure the ERROR-LOCATION
342b8b6e
AD
368# is correctly output on stderr.
369#
f50adbbd 370# If BISON-OPTIONS contains `%error-verbose', then make sure the
6e649e65 371# IF-YYERROR-VERBOSE message is properly output after `syntax error, '
342b8b6e
AD
372# on STDERR.
373#
f50adbbd
AD
374# If BISON-OPTIONS contains `%debug' but not `%glr', then NUM-STDERR-LINES
375# is the number of expected lines on stderr.
342b8b6e 376m4_define([_AT_CHECK_CALC_ERROR],
b0f98b10
AD
377[m4_bmatch([$3], [^/],
378 [AT_PARSER_CHECK([./calc $3], $2, [], [stderr])],
b7c49edf 379 [AT_DATA([[input]],
b0f98b10 380[[$3
342b8b6e 381]])
b0f98b10 382AT_PARSER_CHECK([./calc input], $2, [], [stderr])])
f50adbbd
AD
383m4_bmatch([$1],
384 [%debug.*%glr\|%glr.*%debug],
385 [],
386 [%debug],
b0f98b10 387 [AT_CHECK([wc -l <stderr | sed 's/[[^0-9]]//g'], 0, [$4
51dec47b 388])])
342b8b6e 389
51dec47b
AD
390# Normalize the observed and expected error messages, depending upon the
391# options.
392# 1. Remove the traces from observed.
9280d3ef
AD
393sed '/^Starting/d
394/^Entering/d
f50adbbd 395/^Stack/d
9280d3ef
AD
396/^Reading/d
397/^Reducing/d
398/^Shifting/d
399/^state/d
400/^Error:/d
401/^Next/d
402/^Discarding/d
403/^yydestructor:/d' stderr >at-stderr
342b8b6e 404mv at-stderr stderr
51dec47b
AD
405# 2. Create the reference error message.
406AT_DATA([[expout]],
b0f98b10 407[$5
342b8b6e 408])
51dec47b 409# 3. If locations are not used, remove them.
2a8d363a 410AT_YYERROR_SEES_LOC_IF([],
51dec47b
AD
411[[sed 's/^[-0-9.]*: //' expout >at-expout
412mv at-expout expout]])
413# 4. If error-verbose is not used, strip the`, unexpected....' part.
f50adbbd 414m4_bmatch([$1], [%error-verbose], [],
6e649e65 415[[sed 's/syntax error, .*$/syntax error/' expout >at-expout
51dec47b
AD
416mv at-expout expout]])
417# 5. Check
418AT_CHECK([cat stderr], 0, [expout])
342b8b6e 419])
bfb07874
AD
420
421
907e3bc8 422# AT_CHECK_CALC([BISON-OPTIONS [, EXPECTED-TO-FAIL]])
f50adbbd 423# ------------------------------
bfb07874
AD
424# Start a testing chunk which compiles `calc' grammar with
425# BISON-OPTIONS, and performs several tests over the parser.
907e3bc8 426# However, if EXPECTED-TO-FAIL is nonempty, this test is expected to fail.
342b8b6e 427m4_define([AT_CHECK_CALC],
bfb07874
AD
428[# We use integers to avoid dependencies upon the precision of doubles.
429AT_SETUP([Calculator $1])
430
907e3bc8
PE
431m4_ifval([$2], [AT_CHECK([exit 77])])
432
67a25fed 433AT_BISON_OPTION_PUSHDEFS([$1])
2a8d363a 434
bfb07874
AD
435AT_DATA_CALC_Y([$1])
436
07971983
PE
437AT_LALR1_CC_IF(
438 [AT_CHECK([bison -o calc.cc calc.y])
439 AT_COMPILE_CXX([calc])],
440 [AT_CHECK([bison -o calc.c calc.y])
441 AT_COMPILE([calc])])
bfb07874
AD
442
443# Test the priorities.
444_AT_CHECK_CALC([$1],
445[1 + 2 * 3 = 7
4461 + 2 * -3 = -5
447
448-1^2 = -1
449(-1)^2 = 1
450
451---1 = -1
452
4531 - 2 - 3 = -4
4541 - (2 - 3) = 2
455
4562^2^3 = 256
e7cb57c0 457(2^2)^3 = 64],
1576d44d 458 [570])
bfb07874 459
6e649e65 460# Some syntax errors.
1576d44d 461_AT_CHECK_CALC_ERROR([$1], [1], [0 0], [13],
7548fed2 462 [1.2: syntax error, unexpected "number"])
1576d44d 463_AT_CHECK_CALC_ERROR([$1], [1], [1//2], [18],
0b86fc41 464 [1.2: syntax error, unexpected '/', expecting "number" or '-' or '(' or '!'])
e757bb10 465_AT_CHECK_CALC_ERROR([$1], [1], [error], [5],
0b86fc41 466 [1.0: syntax error, unexpected $undefined])
1576d44d 467_AT_CHECK_CALC_ERROR([$1], [1], [1 = 2 = 3], [26],
7548fed2 468 [1.6: syntax error, unexpected '='])
b0f98b10 469_AT_CHECK_CALC_ERROR([$1], [1],
bfb07874
AD
470 [
471+1],
1576d44d 472 [16],
7548fed2 473 [2.0: syntax error, unexpected '+'])
b7c49edf 474# Exercise error messages with EOF: work on an empty file.
e757bb10 475_AT_CHECK_CALC_ERROR([$1], [1], [/dev/null], [5],
0b86fc41 476 [1.0: syntax error, unexpected "end of input"])
51dec47b
AD
477
478# Exercise the error token: without it, we die at the first error,
0b86fc41
AD
479# hence be sure to
480#
481# - have several errors which exercise different shift/discardings
482# - (): nothing to pop, nothing to discard
483# - (1 + 1 + 1 +): a lot to pop, nothing to discard
484# - (* * *): nothing to pop, a lot to discard
485# - (1 + 2 * *): some to pop and discard
486#
487# - test the action associated to `error'
488#
8dd162d3
PE
489# - check the look-ahead that triggers an error is not discarded
490# when we enter error recovery. Below, the look-ahead causing the
0b86fc41
AD
491# first error is ")", which is needed to recover from the error and
492# produce the "0" that triggers the "0 != 1" error.
493#
494_AT_CHECK_CALC_ERROR([$1], [0],
495 [() + (1 + 1 + 1 +) + (* * *) + (1 * 2 * *) = 1],
1576d44d 496 [188],
0b86fc41
AD
497[1.1: syntax error, unexpected ')', expecting "number" or '-' or '(' or '!'
4981.17: syntax error, unexpected ')', expecting "number" or '-' or '(' or '!'
4991.22: syntax error, unexpected '*', expecting "number" or '-' or '(' or '!'
5001.40: syntax error, unexpected '*', expecting "number" or '-' or '(' or '!'
501calc: error: 4444 != 1])
502
503# The same, but this time exercising explicitly triggered syntax errors.
8dd162d3 504# POSIX says the look-ahead causing the error should not be discarded.
1576d44d 505_AT_CHECK_CALC_ERROR([$1], [0], [(!) + (0 0) = 1], [75],
0b86fc41
AD
506[1.9: syntax error, unexpected "number"
507calc: error: 2222 != 1])
1576d44d 508_AT_CHECK_CALC_ERROR([$1], [0], [(- *) + (0 0) = 1], [85],
82c53be4
PE
509[1.3: syntax error, unexpected '*', expecting "number" or '-' or '(' or '!'
5101.11: syntax error, unexpected "number"
511calc: error: 2222 != 1])
67a25fed 512AT_BISON_OPTION_POPDEFS
2a8d363a 513
d803322e 514AT_CLEANUP
bfb07874
AD
515])# AT_CHECK_CALC
516
517
518
519
f50adbbd
AD
520# ------------------------ #
521# Simple LALR Calculator. #
522# ------------------------ #
523
524AT_BANNER([[Simple LALR Calculator.]])
525
526# AT_CHECK_CALC_LALR([BISON-OPTIONS])
527# -----------------------------------
528# Start a testing chunk which compiles `calc' grammar with
529# BISON-OPTIONS, and performs several tests over the parser.
530m4_define([AT_CHECK_CALC_LALR],
531[AT_CHECK_CALC($@)])
532
533AT_CHECK_CALC_LALR()
534
9e32add8 535AT_CHECK_CALC_LALR([%defines])
ae7453f2 536AT_CHECK_CALC_LALR([%locations])
9e32add8
AD
537AT_CHECK_CALC_LALR([%name-prefix="calc"])
538AT_CHECK_CALC_LALR([%verbose])
539AT_CHECK_CALC_LALR([%yacc])
f50adbbd
AD
540AT_CHECK_CALC_LALR([%error-verbose])
541
211074ca 542AT_CHECK_CALC_LALR([%pure-parser %locations])
ae7453f2 543AT_CHECK_CALC_LALR([%error-verbose %locations])
f50adbbd 544
9e32add8 545AT_CHECK_CALC_LALR([%error-verbose %locations %defines %name-prefix="calc" %verbose %yacc])
f50adbbd
AD
546
547AT_CHECK_CALC_LALR([%debug])
9e32add8 548AT_CHECK_CALC_LALR([%error-verbose %debug %locations %defines %name-prefix="calc" %verbose %yacc])
c19988b7 549
2a8d363a
AD
550AT_CHECK_CALC_LALR([%pure-parser %error-verbose %debug %locations %defines %name-prefix="calc" %verbose %yacc])
551
caf37a36 552AT_CHECK_CALC_LALR([%pure-parser %error-verbose %debug %locations %defines %name-prefix="calc" %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count}])
f50adbbd
AD
553
554
555# ----------------------- #
556# Simple GLR Calculator. #
557# ----------------------- #
558
559AT_BANNER([[Simple GLR Calculator.]])
560
561# AT_CHECK_CALC_GLR([BISON-OPTIONS])
562# ----------------------------------
563# Start a testing chunk which compiles `calc' grammar with
564# BISON-OPTIONS and %glr-parser, and performs several tests over the parser.
565m4_define([AT_CHECK_CALC_GLR],
ae7453f2 566[AT_CHECK_CALC([%glr-parser] $@)])
f50adbbd 567
bfb07874 568
f50adbbd 569AT_CHECK_CALC_GLR()
bfb07874 570
9e32add8 571AT_CHECK_CALC_GLR([%defines])
ae7453f2 572AT_CHECK_CALC_GLR([%locations])
9e32add8
AD
573AT_CHECK_CALC_GLR([%name-prefix="calc"])
574AT_CHECK_CALC_GLR([%verbose])
575AT_CHECK_CALC_GLR([%yacc])
f50adbbd 576AT_CHECK_CALC_GLR([%error-verbose])
bfb07874 577
211074ca 578AT_CHECK_CALC_GLR([%pure-parser %locations])
ae7453f2 579AT_CHECK_CALC_GLR([%error-verbose %locations])
bfb07874 580
9e32add8 581AT_CHECK_CALC_GLR([%error-verbose %locations %defines %name-prefix="calc" %verbose %yacc])
bfb07874 582
f50adbbd 583AT_CHECK_CALC_GLR([%debug])
9e32add8 584AT_CHECK_CALC_GLR([%error-verbose %debug %locations %defines %name-prefix="calc" %verbose %yacc])
21964f43 585
2a8d363a
AD
586AT_CHECK_CALC_GLR([%pure-parser %error-verbose %debug %locations %defines %name-prefix="calc" %verbose %yacc])
587
caf37a36 588AT_CHECK_CALC_GLR([%pure-parser %error-verbose %debug %locations %defines %name-prefix="calc" %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count}])
7548fed2
AD
589
590
591# ----------------------------- #
592# Simple LALR1 C++ Calculator. #
593# ----------------------------- #
594
595AT_BANNER([[Simple LALR1 C++ Calculator.]])
596
597# AT_CHECK_CALC_LALR1_CC([BISON-OPTIONS])
598# ---------------------------------------
599# Start a testing chunk which compiles `calc' grammar with
caf37a36 600# the C++ skeleton, and performs several tests over the parser.
7548fed2 601m4_define([AT_CHECK_CALC_LALR1_CC],
47301314 602[AT_CHECK_CALC([%skeleton "lalr1.cc"] $@)])
7548fed2
AD
603
604# AT_CHECK_CALC_LALR1_CC()
605
d02b25f9 606AT_CHECK_CALC_LALR1_CC([%defines %locations])
0b86fc41 607
d02b25f9 608AT_CHECK_CALC_LALR1_CC([%defines])
7548fed2
AD
609# AT_CHECK_CALC_LALR1_CC([%locations])
610# AT_CHECK_CALC_LALR1_CC([%name-prefix="calc"])
611# AT_CHECK_CALC_LALR1_CC([%verbose])
612# AT_CHECK_CALC_LALR1_CC([%yacc])
613# AT_CHECK_CALC_LALR1_CC([%error-verbose])
614
211074ca 615# AT_CHECK_CALC_LALR1_CC([%pure-parser %locations])
7548fed2
AD
616# AT_CHECK_CALC_LALR1_CC([%error-verbose %locations])
617
d02b25f9 618AT_CHECK_CALC_LALR1_CC([%error-verbose %locations %defines %name-prefix="calc" %verbose %yacc])
7548fed2
AD
619
620# AT_CHECK_CALC_LALR1_CC([%debug])
d02b25f9 621AT_CHECK_CALC_LALR1_CC([%error-verbose %debug %locations %defines %name-prefix="calc" %verbose %yacc])
7548fed2 622
d02b25f9 623AT_CHECK_CALC_LALR1_CC([%pure-parser %error-verbose %debug %locations %defines %name-prefix="calc" %verbose %yacc])
7548fed2 624
caf37a36 625AT_CHECK_CALC_LALR1_CC([%pure-parser %error-verbose %debug %locations %defines %name-prefix="calc" %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count}])