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