]> git.saurik.com Git - bison.git/blame - tests/calc.at
* tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
[bison.git] / tests / calc.at
CommitLineData
342b8b6e 1# Checking the output filenames. -*- Autotest -*-
5504898e 2# Copyright (C) 2000, 2001, 2002 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
bfb07874
AD
38AT_DATA([calc.y],
39[[/* Infix notation calculator--calc */
2a8d363a 40]$4[
bfb07874 41%{
2ce10144 42#include <config.h>
d9684243 43/* We don't need perfect functions for these tests. */
342b8b6e 44#undef malloc
d9684243
PE
45#undef memcmp
46#undef realloc
bfb07874 47#include <stdio.h>
2ce10144
AD
48
49#if STDC_HEADERS
50# include <stdlib.h>
51# include <string.h>
2ce10144 52#endif
bfb07874 53#include <ctype.h>
e7cb57c0 54#include <assert.h>
bfb07874 55
bfb07874 56extern void perror (const char *s);
0dd1580a
RA
57
58/* Exercise pre-prologue dependency to %union. */
59typedef int value_t;
60
e7cb57c0
AD
61value_t global_result = 0;
62int global_count = 0;
63
bfb07874
AD
64%}
65
5a08f1ce 66/* Exercise %union. */
213e640e
AD
67%union
68{
5a08f1ce 69 value_t ival;
213e640e
AD
70};
71
c19988b7
AD
72%{
73#if YYPURE
74# define LOC (*yylloc)
75# define VAL (*yylval)
76#else
77# define LOC (yylloc)
78# define VAL (yylval)
79#endif
80
2a8d363a
AD
81#define YYLLOC_FORMAL ]AT_LOCATION_IF([, YYLTYPE *yylloc])[
82#define YYLLOC_ARG ]AT_LOCATION_IF([, yylloc])[
83#define USE_YYLLOC ]AT_LOCATION_IF([(void) yylloc;])[
84
c19988b7 85#if YYPURE
2a8d363a
AD
86# define LEX_FORMALS YYSTYPE *yylval YYLLOC_FORMAL
87# define LEX_ARGS yylval YYLLOC_ARG
88# define USE_LEX_ARGS (void) yylval; USE_YYLLOC
c19988b7
AD
89# define LEX_PRE_FORMALS LEX_FORMALS,
90# define LEX_PRE_ARGS LEX_ARGS,
91#else
92# define LEX_FORMALS void
93# define LEX_PRE_FORMALS
94# define LEX_ARGS
95# define LEX_PRE_ARGS
96# define USE_LEX_ARGS
97#endif
98
99static int power (int base, int exponent);
2a8d363a
AD
100/* yyerror receives the location if:
101 - %location & %pure & %glr
102 - %location & %pure & %yacc & %parse-param. */
103static void yyerror (const char *s
104 ]AT_YYERROR_ARG_LOC_IF([, YYLTYPE *yylloc])[
105 ]AT_PARAM_IF([, value_t *result, int *count])[
106 );
c19988b7
AD
107static int yylex (LEX_FORMALS);
108static int yygetc (LEX_FORMALS);
109static void yyungetc (LEX_PRE_FORMALS int c);
110%}
111
6b7e85b9 112/* Bison Declarations */
c19988b7 113%token CALC_EOF 0 "end of input"
213e640e
AD
114%token <ival> NUM "number"
115%type <ival> exp
bfb07874
AD
116
117%nonassoc '=' /* comparison */
118%left '-' '+'
119%left '*' '/'
120%left NEG /* negation--unary minus */
121%right '^' /* exponentiation */
122
123/* Grammar follows */
124%%
125input:
b7c49edf 126 line
2a8d363a 127| input line { ]AT_PARAM_IF([++*count; ++global_count;])[ }
bfb07874
AD
128;
129
130line:
c19988b7 131 '\n'
2a8d363a 132| exp '\n' { ]AT_PARAM_IF([*result = global_result = $1;])[ }
bfb07874
AD
133;
134
135exp:
136 NUM { $$ = $1; }
137| exp '=' exp
138 {
2a8d363a
AD
139 if ($1 != $3)
140 fprintf (stderr, "calc: error: %d != %d\n", $1, $3);
141 $$ = $1;
bfb07874
AD
142 }
143| exp '+' exp { $$ = $1 + $3; }
144| exp '-' exp { $$ = $1 - $3; }
145| exp '*' exp { $$ = $1 * $3; }
146| exp '/' exp { $$ = $1 / $3; }
147| '-' exp %prec NEG { $$ = -$2; }
148| exp '^' exp { $$ = power ($1, $3); }
149| '(' exp ')' { $$ = $2; }
51dec47b 150| '(' error ')' { $$ = 0; }
bfb07874
AD
151;
152%%
153/* The input. */
154FILE *yyin;
155
156static void
2a8d363a
AD
157yyerror (const char *s
158 ]AT_YYERROR_ARG_LOC_IF([, YYLTYPE *yylloc])[
159 ]AT_PARAM_IF([, value_t *result, int *count])[)
bfb07874 160{
793a58bb 161]AT_PARAM_IF([(void) result; (void) count; ])[
2a8d363a 162]AT_YYERROR_SEES_LOC_IF([
51dec47b 163 fprintf (stderr, "%d.%d-%d.%d: ",
c19988b7
AD
164 LOC.first_line, LOC.first_column,
165 LOC.last_line, LOC.last_column);
2a8d363a 166])[
bfb07874
AD
167 fprintf (stderr, "%s\n", s);
168}
169
b7c49edf 170
2a8d363a 171]AT_LOCATION_IF([
b7c49edf 172static YYLTYPE last_yylloc;
2a8d363a 173])[
bfb07874 174static int
c19988b7 175yygetc (LEX_FORMALS)
bfb07874
AD
176{
177 int res = getc (yyin);
c19988b7 178 USE_LEX_ARGS;
2a8d363a 179]AT_LOCATION_IF([
c19988b7 180 last_yylloc = LOC;
bfb07874
AD
181 if (res == '\n')
182 {
c19988b7
AD
183 LOC.last_line++;
184 LOC.last_column = 1;
bfb07874
AD
185 }
186 else
c19988b7 187 LOC.last_column++;
2a8d363a 188])[
bfb07874
AD
189 return res;
190}
191
192
193static void
c19988b7 194yyungetc (LEX_PRE_FORMALS int c)
bfb07874 195{
c19988b7 196 USE_LEX_ARGS;
2a8d363a 197]AT_LOCATION_IF([
bfb07874 198 /* Wrong when C == `\n'. */
c19988b7 199 LOC = last_yylloc;
2a8d363a 200])[
bfb07874
AD
201 ungetc (c, yyin);
202}
203
204static int
c19988b7 205read_signed_integer (LEX_FORMALS)
bfb07874 206{
c19988b7 207 int c = yygetc (LEX_ARGS);
bfb07874
AD
208 int sign = 1;
209 int n = 0;
210
c19988b7 211 USE_LEX_ARGS;
bfb07874
AD
212 if (c == '-')
213 {
c19988b7 214 c = yygetc (LEX_ARGS);
bfb07874
AD
215 sign = -1;
216 }
217
218 while (isdigit (c))
219 {
220 n = 10 * n + (c - '0');
c19988b7 221 c = yygetc (LEX_ARGS);
bfb07874
AD
222 }
223
c19988b7 224 yyungetc (LEX_PRE_ARGS c);
bfb07874
AD
225
226 return sign * n;
227}
228
229
230
231/*---------------------------------------------------------------.
232| Lexical analyzer returns an integer on the stack and the token |
233| NUM, or the ASCII character read if not a number. Skips all |
234| blanks and tabs, returns 0 for EOF. |
235`---------------------------------------------------------------*/
236
237static int
c19988b7 238yylex (LEX_FORMALS)
bfb07874 239{
c19988b7 240 static int init = 1;
bfb07874
AD
241 int c;
242
c19988b7
AD
243 if (init)
244 {
245 init = 0;
2a8d363a 246]AT_LOCATION_IF([
21964f43
AD
247 LOC.last_column = 1;
248 LOC.last_line = 1;
2a8d363a 249])[
c19988b7
AD
250 }
251
2a8d363a 252]AT_LOCATION_IF([
c19988b7
AD
253 LOC.first_column = LOC.last_column;
254 LOC.first_line = LOC.last_line;
2a8d363a 255])[
bfb07874
AD
256
257 /* Skip white space. */
c19988b7 258 while ((c = yygetc (LEX_ARGS)) == ' ' || c == '\t')
bfb07874 259 {
2a8d363a 260]AT_LOCATION_IF([
c19988b7
AD
261 LOC.first_column = LOC.last_column;
262 LOC.first_line = LOC.last_line;
2a8d363a 263])[
bfb07874
AD
264 }
265
266 /* process numbers */
267 if (c == '.' || isdigit (c))
268 {
c19988b7
AD
269 yyungetc (LEX_PRE_ARGS c);
270 VAL.ival = read_signed_integer (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
293int
342b8b6e 294main (int argc, const char **argv)
bfb07874 295{
e7cb57c0
AD
296 value_t result = 0;
297 int count = 0;
342b8b6e
AD
298 yyin = NULL;
299
300 if (argc == 2)
bfb07874
AD
301 yyin = fopen (argv[1], "r");
302 else
303 yyin = stdin;
304
342b8b6e 305 if (!yyin)
bfb07874
AD
306 {
307 perror (argv[1]);
308 exit (1);
309 }
310
311#if YYDEBUG
312 yydebug = 1;
bfb07874 313#endif
2a8d363a 314 yyparse (]AT_PARAM_IF([&result, &count])[);
e7cb57c0
AD
315 assert (global_result == result);
316 assert (global_count == count);
317
bfb07874
AD
318 return 0;
319}
320]])
321])# _AT_DATA_CALC_Y
322
323
324# AT_DATA_CALC_Y([BISON-OPTIONS])
325# -------------------------------
326# Produce `calc.y'.
342b8b6e 327m4_define([AT_DATA_CALC_Y],
9e32add8 328[_AT_DATA_CALC_Y($[1], $[2], $[3], [$1])
f50adbbd 329])
bfb07874
AD
330
331
332
342b8b6e
AD
333# _AT_CHECK_CALC(BISON-OPTIONS, INPUT, [NUM-STDERR-LINES = 0])
334# ------------------------------------------------------------
bfb07874 335# Run `calc' on INPUT and expect no STDOUT nor STDERR.
342b8b6e 336#
f50adbbd
AD
337# If BISON-OPTIONS contains `%debug' but not `%glr-parser', then
338# NUM-STDERR-LINES is the number of expected lines on stderr.
339#
340# We don't count GLR's traces yet, since its traces are somewhat
341# different from LALR's.
342b8b6e
AD
342m4_define([_AT_CHECK_CALC],
343[AT_DATA([[input]],
344[[$2
345]])
f50adbbd
AD
346AT_PARSER_CHECK([./calc input], 0, [], [stderr])
347m4_bmatch([$1],
348 [%debug.*%glr\|%glr.*%debug],
349 [],
350 [%debug],
351 [AT_CHECK([wc -l <stderr | sed 's/[[^0-9]]//g'], 0, [$3
352])])
342b8b6e
AD
353])
354
355
356# _AT_CHECK_CALC_ERROR(BISON-OPTIONS, INPUT, [NUM-DEBUG-LINES],
2a8d363a
AD
357# [VERBOSE-AND-LOCATED-ERROR-MESSAGE])
358# -------------------------------------------------------------
342b8b6e
AD
359# Run `calc' on INPUT, and expect a `parse error' message.
360#
b7c49edf
AD
361# If INPUT starts with a slash, it is used as absolute input file name,
362# otherwise as contents.
363#
9e32add8 364# If BISON-OPTIONS contains `%location', then make sure the ERROR-LOCATION
342b8b6e
AD
365# is correctly output on stderr.
366#
f50adbbd 367# If BISON-OPTIONS contains `%error-verbose', then make sure the
342b8b6e
AD
368# IF-YYERROR-VERBOSE message is properly output after `parse error, '
369# on STDERR.
370#
f50adbbd
AD
371# If BISON-OPTIONS contains `%debug' but not `%glr', then NUM-STDERR-LINES
372# is the number of expected lines on stderr.
342b8b6e 373m4_define([_AT_CHECK_CALC_ERROR],
b7c49edf 374[m4_bmatch([$2], [^/],
1154cced 375 [AT_PARSER_CHECK([./calc $2], 0, [], [stderr])],
b7c49edf 376 [AT_DATA([[input]],
342b8b6e
AD
377[[$2
378]])
1154cced 379AT_PARSER_CHECK([./calc input], 0, [], [stderr])])
f50adbbd
AD
380m4_bmatch([$1],
381 [%debug.*%glr\|%glr.*%debug],
382 [],
383 [%debug],
384 [AT_CHECK([wc -l <stderr | sed 's/[[^0-9]]//g'], 0, [$3
51dec47b 385])])
342b8b6e 386
51dec47b
AD
387# Normalize the observed and expected error messages, depending upon the
388# options.
389# 1. Remove the traces from observed.
9280d3ef
AD
390sed '/^Starting/d
391/^Entering/d
f50adbbd 392/^Stack/d
9280d3ef
AD
393/^Reading/d
394/^Reducing/d
395/^Shifting/d
396/^state/d
397/^Error:/d
398/^Next/d
399/^Discarding/d
400/^yydestructor:/d' stderr >at-stderr
342b8b6e 401mv at-stderr stderr
51dec47b
AD
402# 2. Create the reference error message.
403AT_DATA([[expout]],
404[$4
342b8b6e 405])
51dec47b 406# 3. If locations are not used, remove them.
2a8d363a 407AT_YYERROR_SEES_LOC_IF([],
51dec47b
AD
408[[sed 's/^[-0-9.]*: //' expout >at-expout
409mv at-expout expout]])
410# 4. If error-verbose is not used, strip the`, unexpected....' part.
f50adbbd 411m4_bmatch([$1], [%error-verbose], [],
51dec47b
AD
412[[sed 's/parse error, .*$/parse error/' expout >at-expout
413mv at-expout expout]])
414# 5. Check
415AT_CHECK([cat stderr], 0, [expout])
342b8b6e 416])
bfb07874
AD
417
418
2a8d363a
AD
419# AT_CALC_PUSHDEFS($1, $2, [BISON-OPTIONS])
420# -----------------------------------------
421# This macro works around the impossibility to define macros
422# inside macros, because issuing `[$1]' is not possible in M4 :(.
423# This sucks hard, GNU M4 should really provide M5 like $$1.
424m4_define([AT_CHECK_PUSHDEFS],
425[m4_if([$1$2], $[1]$[2], [],
426 [m4_fatal([$0: Invalid arguments: $@])])dnl
427m4_pushdef([AT_PARAM_IF],
428[m4_bmatch([$3], [%parse-param], [$1], [$2])])
429m4_pushdef([AT_LOCATION_IF],
430[m4_bmatch([$3], [%locations], [$1], [$2])])
431m4_pushdef([AT_PURE_IF],
432[m4_bmatch([$3], [%pure-parser], [$1], [$2])])
433m4_pushdef([AT_GLR_IF],
434[m4_bmatch([$3], [%glr-parser], [$1], [$2])])
435m4_pushdef([AT_PURE_AND_LOC_IF],
436[m4_bmatch([$3], [%locations.*%pure-parser\|%pure-parser.*%locations],
437 [$1], [$2])])
438m4_pushdef([AT_GLR_OR_PARAM_IF],
439[m4_bmatch([$3], [%glr-parser\|%parse-param], [$1], [$2])])
440
441# yyerror receives the location if %location & %pure & (%glr or %parse-param).
442m4_pushdef([AT_YYERROR_ARG_LOC_IF],
443[AT_GLR_OR_PARAM_IF([AT_PURE_AND_LOC_IF([$1], [$2])],
444 [$2])])
793a58bb 445# yyerror cannot see the locations if !glr & pure & !param.
2a8d363a
AD
446m4_pushdef([AT_YYERROR_SEES_LOC_IF],
447[AT_LOCATION_IF([AT_GLR_IF([$1],
793a58bb
AD
448 [AT_PURE_IF([AT_PARAM_IF([$1], [$2])],
449 [$1])])],
2a8d363a
AD
450 [$2])])
451])
452
453
454# AT_CALC_POPDEFS
455# ---------------
456m4_define([AT_CHECK_POPDEFS],
457[m4_popdef([AT_YYERROR_SEES_LOC_IF])
458m4_popdef([AT_YYERROR_ARG_LOC_IF])
459m4_popdef([AT_GLR_OR_PARAM_IF])
460m4_popdef([AT_PURE_AND_LOC_IF])
461m4_popdef([AT_GLR_IF])
462m4_popdef([AT_LOCATION_IF])
463m4_popdef([AT_PARAM_IF])
464])
465
466
467
f50adbbd
AD
468# AT_CHECK_CALC([BISON-OPTIONS])
469# ------------------------------
bfb07874
AD
470# Start a testing chunk which compiles `calc' grammar with
471# BISON-OPTIONS, and performs several tests over the parser.
342b8b6e 472m4_define([AT_CHECK_CALC],
bfb07874
AD
473[# We use integers to avoid dependencies upon the precision of doubles.
474AT_SETUP([Calculator $1])
475
2a8d363a
AD
476AT_CHECK_PUSHDEFS($[1], $[2], [$1])
477
bfb07874
AD
478AT_DATA_CALC_Y([$1])
479
480# Specify the output files to avoid problems on different file systems.
9e32add8 481AT_CHECK([bison -o calc.c calc.y],
bfb07874 482 [0], [], [])
3c1a79b3 483
1154cced 484AT_COMPILE([calc])
bfb07874
AD
485
486# Test the priorities.
487_AT_CHECK_CALC([$1],
488[1 + 2 * 3 = 7
4891 + 2 * -3 = -5
490
491-1^2 = -1
492(-1)^2 = 1
493
494---1 = -1
495
4961 - 2 - 3 = -4
4971 - (2 - 3) = 2
498
4992^2^3 = 256
e7cb57c0
AD
500(2^2)^3 = 64],
501 [486])
bfb07874
AD
502
503# Some parse errors.
366eea36 504_AT_CHECK_CALC_ERROR([$1], [0 0], [11],
51dec47b 505 [1.3-1.4: parse error, unexpected "number"])
366eea36 506_AT_CHECK_CALC_ERROR([$1], [1//2], [15],
51dec47b 507 [1.3-1.4: parse error, unexpected '/', expecting "number" or '-' or '('])
b7c49edf 508_AT_CHECK_CALC_ERROR([$1], [error], [4],
88bce5a2 509 [1.1-1.2: parse error, unexpected $undefined, expecting "number" or '-' or '\n' or '('])
366eea36 510_AT_CHECK_CALC_ERROR([$1], [1 = 2 = 3], [22],
51dec47b 511 [1.7-1.8: parse error, unexpected '='])
bfb07874
AD
512_AT_CHECK_CALC_ERROR([$1],
513 [
514+1],
366eea36 515 [14],
51dec47b 516 [2.1-2.2: parse error, unexpected '+'])
b7c49edf 517# Exercise error messages with EOF: work on an empty file.
366eea36 518_AT_CHECK_CALC_ERROR([$1], [/dev/null], [4],
c19988b7 519 [1.1-1.2: parse error, unexpected "end of input", expecting "number" or '-' or '\n' or '('])
51dec47b
AD
520
521# Exercise the error token: without it, we die at the first error,
522# hence be sure i. to have several errors, ii. to test the action
523# associated to `error'.
366eea36 524_AT_CHECK_CALC_ERROR([$1], [(1 ++ 2) + (0 0) = 1], [82],
51dec47b
AD
525[1.5-1.6: parse error, unexpected '+', expecting "number" or '-' or '('
5261.15-1.16: parse error, unexpected "number"
527calc: error: 0 != 1])
528
2a8d363a
AD
529AT_CHECK_POPDEFS
530
d803322e 531AT_CLEANUP
bfb07874
AD
532])# AT_CHECK_CALC
533
534
535
536
f50adbbd
AD
537# ------------------------ #
538# Simple LALR Calculator. #
539# ------------------------ #
540
541AT_BANNER([[Simple LALR Calculator.]])
542
543# AT_CHECK_CALC_LALR([BISON-OPTIONS])
544# -----------------------------------
545# Start a testing chunk which compiles `calc' grammar with
546# BISON-OPTIONS, and performs several tests over the parser.
547m4_define([AT_CHECK_CALC_LALR],
548[AT_CHECK_CALC($@)])
549
550AT_CHECK_CALC_LALR()
551
9e32add8 552AT_CHECK_CALC_LALR([%defines])
ae7453f2 553AT_CHECK_CALC_LALR([%locations])
9e32add8
AD
554AT_CHECK_CALC_LALR([%name-prefix="calc"])
555AT_CHECK_CALC_LALR([%verbose])
556AT_CHECK_CALC_LALR([%yacc])
f50adbbd
AD
557AT_CHECK_CALC_LALR([%error-verbose])
558
ae7453f2 559AT_CHECK_CALC_LALR([%error-verbose %locations])
f50adbbd 560
9e32add8 561AT_CHECK_CALC_LALR([%error-verbose %locations %defines %name-prefix="calc" %verbose %yacc])
f50adbbd
AD
562
563AT_CHECK_CALC_LALR([%debug])
9e32add8 564AT_CHECK_CALC_LALR([%error-verbose %debug %locations %defines %name-prefix="calc" %verbose %yacc])
c19988b7 565
2a8d363a
AD
566AT_CHECK_CALC_LALR([%pure-parser %error-verbose %debug %locations %defines %name-prefix="calc" %verbose %yacc])
567
568AT_CHECK_CALC_LALR([%pure-parser %error-verbose %debug %locations %defines %name-prefix="calc" %verbose %yacc %parse-param "value_t *result", "result" %parse-param "int *count", "count"])
f50adbbd
AD
569
570
571# ----------------------- #
572# Simple GLR Calculator. #
573# ----------------------- #
574
575AT_BANNER([[Simple GLR Calculator.]])
576
577# AT_CHECK_CALC_GLR([BISON-OPTIONS])
578# ----------------------------------
579# Start a testing chunk which compiles `calc' grammar with
580# BISON-OPTIONS and %glr-parser, and performs several tests over the parser.
581m4_define([AT_CHECK_CALC_GLR],
ae7453f2 582[AT_CHECK_CALC([%glr-parser] $@)])
f50adbbd 583
bfb07874 584
f50adbbd 585AT_CHECK_CALC_GLR()
bfb07874 586
9e32add8 587AT_CHECK_CALC_GLR([%defines])
ae7453f2 588AT_CHECK_CALC_GLR([%locations])
9e32add8
AD
589AT_CHECK_CALC_GLR([%name-prefix="calc"])
590AT_CHECK_CALC_GLR([%verbose])
591AT_CHECK_CALC_GLR([%yacc])
f50adbbd 592AT_CHECK_CALC_GLR([%error-verbose])
bfb07874 593
ae7453f2 594AT_CHECK_CALC_GLR([%error-verbose %locations])
bfb07874 595
9e32add8 596AT_CHECK_CALC_GLR([%error-verbose %locations %defines %name-prefix="calc" %verbose %yacc])
bfb07874 597
f50adbbd 598AT_CHECK_CALC_GLR([%debug])
9e32add8 599AT_CHECK_CALC_GLR([%error-verbose %debug %locations %defines %name-prefix="calc" %verbose %yacc])
21964f43 600
2a8d363a
AD
601AT_CHECK_CALC_GLR([%pure-parser %error-verbose %debug %locations %defines %name-prefix="calc" %verbose %yacc])
602
603AT_CHECK_CALC_GLR([%pure-parser %error-verbose %debug %locations %defines %name-prefix="calc" %verbose %yacc %parse-param "value_t *result", "result" %parse-param "int *count", "count"])