]> git.saurik.com Git - bison.git/blame_incremental - tests/calc.at
tests: handle locations in a more generic way.
[bison.git] / tests / calc.at
... / ...
CommitLineData
1# Simple calculator. -*- Autotest -*-
2
3# Copyright (C) 2000-2012 Free Software Foundation, Inc.
4
5# This program is free software: you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation, either version 3 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18## ---------------------------------------------------- ##
19## Compile the grammar described in the documentation. ##
20## ---------------------------------------------------- ##
21
22
23# ------------------------- #
24# Helping Autotest macros. #
25# ------------------------- #
26
27
28# _AT_DATA_CALC_Y($1, $2, $3, [BISON-DIRECTIVES])
29# -----------------------------------------------
30# Produce `calc.y' and, if %defines was specified, `calc-lex.c' or
31# `calc-lex.cc'.
32#
33# Don't call this macro directly, because it contains some occurrences
34# of `$1' etc. which will be interpreted by m4. So you should call it
35# with $1, $2, and $3 as arguments, which is what AT_DATA_CALC_Y does.
36#
37# When %defines is not passed, generate a single self-contained file.
38# Otherwise, generate three: calc.y with the parser, calc-lex.c with
39# the scanner, and calc-main.c with "main()". This is in order to
40# stress the use of the generated parser header. To avoid code
41# duplication, AT_CALC_LEX and AT_CALC_MAIN contain the body of these
42# two later files.
43m4_define([_AT_DATA_CALC_Y],
44[m4_if([$1$2$3], $[1]$[2]$[3], [],
45 [m4_fatal([$0: Invalid arguments: $@])])dnl
46
47m4_pushdef([AT_CALC_MAIN],
48[#include <stdlib.h> /* abort */
49#if HAVE_UNISTD_H
50# include <unistd.h>
51#else
52# undef alarm
53# define alarm(seconds) /* empty */
54#endif
55
56AT_SKEL_CC_IF([[
57/* A C++ ]AT_NAME_PREFIX[parse that simulates the C signature. */
58int
59]AT_NAME_PREFIX[parse (]AT_PARAM_IF([semantic_value *result, int *count]))[
60{
61 ]AT_NAME_PREFIX[::parser parser]AT_PARAM_IF([ (result, count)])[;
62#if YYDEBUG
63 parser.set_debug_level (1);
64#endif
65 return parser.parse ();
66}
67]])[
68
69semantic_value global_result = 0;
70int global_count = 0;
71
72/* A C main function. */
73int
74main (int argc, const char **argv)
75{
76 semantic_value result = 0;
77 int count = 0;
78 int status;
79
80 /* This used to be alarm (10), but that isn't enough time for
81 a July 1995 vintage DEC Alphastation 200 4/100 system,
82 according to Nelson H. F. Beebe. 100 seconds is enough. */
83 alarm (100);
84
85 if (argc == 2)
86 input = fopen (argv[1], "r");
87 else
88 input = stdin;
89
90 if (!input)
91 {
92 perror (argv[1]);
93 return 3;
94 }
95
96]AT_SKEL_CC_IF([], [m4_bmatch([$4], [%debug],
97[ ]AT_NAME_PREFIX[debug = 1;])])[
98 status = ]AT_NAME_PREFIX[parse (]AT_PARAM_IF([[&result, &count]])[);
99 if (fclose (input))
100 perror ("fclose");
101 if (global_result != result)
102 abort ();
103 if (global_count != count)
104 abort ();
105 return status;
106}
107]])
108
109
110m4_pushdef([AT_CALC_LEX],
111[[#include <ctype.h>
112
113int ]AT_NAME_PREFIX[lex (]AT_LEX_FORMALS[);
114static int get_char (]AT_LEX_FORMALS[);
115static void unget_char (]AT_LEX_PRE_FORMALS[ int c);
116
117]AT_LOCATION_IF([
118static YYLTYPE last_yylloc;
119])[
120static int
121get_char (]AT_LEX_FORMALS[)
122{
123 int res = getc (input);
124 ]AT_USE_LEX_ARGS[;
125]AT_LOCATION_IF([
126 last_yylloc = AT_LOC;
127 if (res == '\n')
128 {
129 AT_LOC_LAST_LINE++;
130 AT_LOC_LAST_COLUMN = 1;
131 }
132 else
133 AT_LOC_LAST_COLUMN++;
134])[
135 return res;
136}
137
138static void
139unget_char (]AT_LEX_PRE_FORMALS[ int c)
140{
141 ]AT_USE_LEX_ARGS[;
142]AT_LOCATION_IF([
143 /* Wrong when C == `\n'. */
144 AT_LOC = last_yylloc;
145])[
146 ungetc (c, input);
147}
148
149static int
150read_signed_integer (]AT_LEX_FORMALS[)
151{
152 int c = get_char (]AT_LEX_ARGS[);
153 int sign = 1;
154 int n = 0;
155
156 ]AT_USE_LEX_ARGS[;
157 if (c == '-')
158 {
159 c = get_char (]AT_LEX_ARGS[);
160 sign = -1;
161 }
162
163 while (isdigit (c))
164 {
165 n = 10 * n + (c - '0');
166 c = get_char (]AT_LEX_ARGS[);
167 }
168
169 unget_char (]AT_LEX_PRE_ARGS[ c);
170
171 return sign * n;
172}
173
174
175/*---------------------------------------------------------------.
176| Lexical analyzer returns an integer on the stack and the token |
177| NUM, or the ASCII character read if not a number. Skips all |
178| blanks and tabs, returns 0 for EOF. |
179`---------------------------------------------------------------*/
180
181int
182]AT_NAME_PREFIX[lex (]AT_LEX_FORMALS[)
183{
184 static int init = 1;
185 int c;
186
187 if (init)
188 {
189 init = 0;
190]AT_LOCATION_IF([
191 AT_LOC_LAST_COLUMN = 1;
192 AT_LOC_LAST_LINE = 1;
193])[
194 }
195
196 /* Skip current token, then white spaces. */
197 do
198 {
199]AT_LOCATION_IF(
200[ AT_LOC_FIRST_COLUMN = AT_LOC_LAST_COLUMN;
201 AT_LOC_FIRST_LINE = AT_LOC_LAST_LINE;
202])[
203 }
204 while ((c = get_char (]AT_LEX_ARGS[)) == ' ' || c == '\t');
205
206 /* process numbers */
207 if (c == '.' || isdigit (c))
208 {
209 unget_char (]AT_LEX_PRE_ARGS[ c);
210 ]AT_VAL[.ival = read_signed_integer (]AT_LEX_ARGS[);
211 return NUM;
212 }
213
214 /* Return end-of-file. */
215 if (c == EOF)
216 return CALC_EOF;
217
218 /* Return single chars. */
219 return c;
220}
221]])
222
223AT_DATA_GRAMMAR([calc.y],
224[[/* Infix notation calculator--calc */
225]$4
226AT_SKEL_CC_IF(
227[%define global_tokens_and_yystype])[
228%code requires
229{
230]AT_LOCATION_TYPE_IF([[
231# include <iostream>
232 struct Point
233 {
234 int l;
235 int c;
236 };
237
238 struct Span
239 {
240 Point first;
241 Point last;
242 };
243
244# define YYLLOC_DEFAULT(Current, Rhs, N) \
245 do \
246 if (N) \
247 { \
248 (Current).first = YYRHSLOC (Rhs, 1).first; \
249 (Current).last = YYRHSLOC (Rhs, N).last; \
250 } \
251 else \
252 { \
253 (Current).first = (Current).last = YYRHSLOC (Rhs, 0).last; \
254 } \
255 while (false)
256
257]])[
258 /* Exercise pre-prologue dependency to %union. */
259 typedef int semantic_value;
260}
261
262/* Exercise %union. */
263%union
264{
265 semantic_value ival;
266};
267
268%code provides
269{
270#include <stdio.h>
271/* The input. */
272extern FILE *input;
273extern semantic_value global_result;
274extern int global_count;]AT_SKEL_CC_IF([[
275#ifndef YYLTYPE
276# define YYLTYPE ]AT_NAME_PREFIX[::parser::location_type
277#endif
278]])[
279}
280
281%code
282{
283#include <assert.h>
284#include <string.h>
285#define USE(Var)
286
287FILE *input;
288static int power (int base, int exponent);
289
290]AT_SKEL_CC_IF(,
291[/* yyerror receives the location if:
292 - %location & %pure & %glr
293 - %location & %pure & %yacc & %parse-param. */
294static void yyerror (AT_YYERROR_ARG_LOC_IF([YYLTYPE *llocp, ])
295 AT_PARAM_IF([semantic_value *result, int *count, ])
296 const char *s
297 );])[
298int yylex (]AT_LEX_FORMALS[);
299}
300
301]AT_SKEL_CC_IF([AT_LOCATION_TYPE_IF([], [
302/* The lalr1.cc skeleton, for backward compatibility, defines
303 a constructor for position that initializes the filename. The
304 glr.cc skeleton does not (and in fact cannot: location/position
305 are stored in a union, from which objects with constructors are
306 excluded in C++. */
307%initial-action {
308 @$.initialize ();
309}
310])])[
311
312/* Bison Declarations */
313%token CALC_EOF 0 "end of input"
314%token <ival> NUM "number"
315%type <ival> exp
316
317%nonassoc '=' /* comparison */
318%left '-' '+'
319%left '*' '/'
320%left NEG /* negation--unary minus */
321%right '^' /* exponentiation */
322
323/* Grammar follows */
324%%
325input:
326 line
327| input line { ]AT_PARAM_IF([++*count; ++global_count;])[ }
328;
329
330line:
331 '\n'
332| exp '\n' { ]AT_PARAM_IF([*result = global_result = $1], [USE ($1)])[; }
333;
334
335exp:
336 NUM { $$ = $1; }
337| exp '=' exp
338 {
339 if ($1 != $3)
340 fprintf (stderr, "calc: error: %d != %d\n", $1, $3);
341 $$ = $1;
342 }
343| exp '+' exp { $$ = $1 + $3; }
344| exp '-' exp { $$ = $1 - $3; }
345| exp '*' exp { $$ = $1 * $3; }
346| exp '/' exp { $$ = $1 / $3; }
347| '-' exp %prec NEG { $$ = -$2; }
348| exp '^' exp { $$ = power ($1, $3); }
349| '(' exp ')' { $$ = $2; }
350| '(' error ')' { $$ = 1111; yyerrok; }
351| '!' { $$ = 0; YYERROR; }
352| '-' error { $$ = 0; YYERROR; }
353;
354%%
355
356static int
357power (int base, int exponent)
358{
359 int res = 1;
360 assert (0 <= exponent);
361 for (/* Niente */; exponent; --exponent)
362 res *= base;
363 return res;
364}
365
366]AT_SKEL_CC_IF(
367[AT_LOCATION_TYPE_IF([[
368 std::ostream&
369 operator<< (std::ostream& o, const Span& s)
370 {
371 o << s.first.l << '.' << s.first.c;
372 if (s.first.l != s.last.l)
373 o << '-' << s.last.l << '.' << s.last.c - 1;
374 else if (s.first.c != s.last.c - 1)
375 o << '-' << s.last.c - 1;
376 return o;
377 }
378]])
379AT_YYERROR_DEFINE],
380[/* A C error reporting function. */
381static void
382yyerror (AT_YYERROR_ARG_LOC_IF([YYLTYPE *llocp, ])
383 AT_PARAM_IF([semantic_value *result, int *count, ])
384 const char *s)
385{
386AT_PARAM_IF([(void) result; (void) count;])
387AT_YYERROR_SEES_LOC_IF([
388 fprintf (stderr, "%d.%d",
389 AT_LOC_FIRST_LINE, AT_LOC_FIRST_COLUMN);
390 if (AT_LOC_FIRST_LINE != AT_LOC_LAST_LINE)
391 fprintf (stderr, "-%d.%d",
392 AT_LOC_LAST_LINE, AT_LOC_LAST_COLUMN - 1);
393 else if (AT_LOC_FIRST_COLUMN != AT_LOC_LAST_COLUMN - 1)
394 fprintf (stderr, "-%d",
395 AT_LOC_LAST_COLUMN - 1);
396 fprintf (stderr, ": ");])
397 fprintf (stderr, "%s\n", s);
398}])[
399
400]AT_DEFINES_IF([],
401[AT_CALC_LEX
402AT_CALC_MAIN])[
403]])
404
405AT_DEFINES_IF([AT_DATA_SOURCE([[calc-lex.c]AT_SKEL_CC_IF([[c]])],
406[[#include "calc.h]AT_SKEL_CC_IF([[h]])["
407
408]AT_CALC_LEX])
409AT_DATA_SOURCE([[calc-main.c]AT_SKEL_CC_IF([[c]])],
410[[#include "calc.h]AT_SKEL_CC_IF([[h]])["
411
412]AT_CALC_MAIN])
413])
414m4_popdef([AT_CALC_MAIN])
415m4_popdef([AT_CALC_LEX])
416])# _AT_DATA_CALC_Y
417
418
419# AT_DATA_CALC_Y([BISON-OPTIONS])
420# -------------------------------
421# Produce `calc.y' and, if %defines was specified, `calc-lex.c' or
422# `calc-lex.cc'.
423m4_define([AT_DATA_CALC_Y],
424[_AT_DATA_CALC_Y($[1], $[2], $[3], [$1])
425])
426
427
428
429# _AT_CHECK_CALC(BISON-OPTIONS, INPUT, [NUM-STDERR-LINES])
430# --------------------------------------------------------
431# Run `calc' on INPUT and expect no STDOUT nor STDERR.
432#
433# If BISON-OPTIONS contains `%debug' but not `%glr-parser', then
434#
435# NUM-STDERR-LINES is the number of expected lines on stderr.
436# Currently this is ignored, though, since the output format is fluctuating.
437#
438# We don't count GLR's traces yet, since its traces are somewhat
439# different from LALR's.
440m4_define([_AT_CHECK_CALC],
441[AT_DATA([[input]],
442[[$2
443]])
444AT_PARSER_CHECK([./calc input], 0, [], [stderr])
445])
446
447
448# _AT_CHECK_CALC_ERROR(BISON-OPTIONS, EXIT-STATUS, INPUT,
449# [NUM-STDERR-LINES],
450# [VERBOSE-AND-LOCATED-ERROR-MESSAGE])
451# ---------------------------------------------------------
452# Run `calc' on INPUT, and expect a `syntax error' message.
453#
454# If INPUT starts with a slash, it is used as absolute input file name,
455# otherwise as contents.
456#
457# NUM-STDERR-LINES is the number of expected lines on stderr.
458# Currently this is ignored, though, since the output format is fluctuating.
459#
460# If BISON-OPTIONS contains `%location', then make sure the ERROR-LOCATION
461# is correctly output on stderr.
462#
463# If BISON-OPTIONS contains `%error-verbose', then make sure the
464# IF-YYERROR-VERBOSE message is properly output after `syntax error, '
465# on STDERR.
466#
467# If BISON-OPTIONS contains `%debug' but not `%glr', then NUM-STDERR-LINES
468# is the number of expected lines on stderr.
469m4_define([_AT_CHECK_CALC_ERROR],
470[m4_bmatch([$3], [^/],
471 [AT_PARSER_CHECK([./calc $3], $2, [], [stderr])],
472 [AT_DATA([[input]],
473[[$3
474]])
475AT_PARSER_CHECK([./calc input], $2, [], [stderr])])
476
477# Normalize the observed and expected error messages, depending upon the
478# options.
479# 1. Remove the traces from observed.
480sed '/^Starting/d
481/^Entering/d
482/^Stack/d
483/^Reading/d
484/^Reducing/d
485/^Return/d
486/^Shifting/d
487/^state/d
488/^Cleanup:/d
489/^Error:/d
490/^Next/d
491/^Now/d
492/^Discarding/d
493/ \$[[0-9$]]* = /d
494/^yydestructor:/d' stderr >at-stderr
495mv at-stderr stderr
496# 2. Create the reference error message.
497AT_DATA([[expout]],
498[$5
499])
500# 3. If locations are not used, remove them.
501AT_YYERROR_SEES_LOC_IF([],
502[[sed 's/^[-0-9.]*: //' expout >at-expout
503mv at-expout expout]])
504# 4. If error-verbose is not used, strip the`, unexpected....' part.
505m4_bmatch([$1], [%error-verbose], [],
506[[sed 's/syntax error, .*$/syntax error/' expout >at-expout
507mv at-expout expout]])
508# 5. Check
509AT_CHECK([cat stderr], 0, [expout])
510])
511
512
513# AT_CHECK_CALC([BISON-OPTIONS])
514# ------------------------------
515# Start a testing chunk which compiles `calc' grammar with
516# BISON-OPTIONS, and performs several tests over the parser.
517m4_define([AT_CHECK_CALC],
518[m4_ifval([$2], [m4_fatal([$0: expected a single argument])])
519
520# We use integers to avoid dependencies upon the precision of doubles.
521AT_SETUP([Calculator $1])
522
523AT_BISON_OPTION_PUSHDEFS([$1])
524
525AT_DATA_CALC_Y([$1])
526AT_FULL_COMPILE([calc], AT_DEFINES_IF([[lex], [main]]))
527
528# Test the priorities.
529_AT_CHECK_CALC([$1],
530[1 + 2 * 3 = 7
5311 + 2 * -3 = -5
532
533-1^2 = -1
534(-1)^2 = 1
535
536---1 = -1
537
5381 - 2 - 3 = -4
5391 - (2 - 3) = 2
540
5412^2^3 = 256
542(2^2)^3 = 64],
543 [842])
544
545# Some syntax errors.
546_AT_CHECK_CALC_ERROR([$1], [1], [0 0], [15],
547 [1.3: syntax error, unexpected number])
548_AT_CHECK_CALC_ERROR([$1], [1], [1//2], [20],
549 [1.3: syntax error, unexpected '/', expecting number or '-' or '(' or '!'])
550_AT_CHECK_CALC_ERROR([$1], [1], [error], [5],
551 [1.1: syntax error, unexpected $undefined])
552_AT_CHECK_CALC_ERROR([$1], [1], [1 = 2 = 3], [30],
553 [1.7: syntax error, unexpected '='])
554_AT_CHECK_CALC_ERROR([$1], [1],
555 [
556+1],
557 [20],
558 [2.1: syntax error, unexpected '+'])
559# Exercise error messages with EOF: work on an empty file.
560_AT_CHECK_CALC_ERROR([$1], [1], [/dev/null], [4],
561 [1.1: syntax error, unexpected end of input])
562
563# Exercise the error token: without it, we die at the first error,
564# hence be sure to
565#
566# - have several errors which exercise different shift/discardings
567# - (): nothing to pop, nothing to discard
568# - (1 + 1 + 1 +): a lot to pop, nothing to discard
569# - (* * *): nothing to pop, a lot to discard
570# - (1 + 2 * *): some to pop and discard
571#
572# - test the action associated to `error'
573#
574# - check the lookahead that triggers an error is not discarded
575# when we enter error recovery. Below, the lookahead causing the
576# first error is ")", which is needed to recover from the error and
577# produce the "0" that triggers the "0 != 1" error.
578#
579_AT_CHECK_CALC_ERROR([$1], [0],
580 [() + (1 + 1 + 1 +) + (* * *) + (1 * 2 * *) = 1],
581 [250],
582[1.2: syntax error, unexpected ')', expecting number or '-' or '(' or '!'
5831.18: syntax error, unexpected ')', expecting number or '-' or '(' or '!'
5841.23: syntax error, unexpected '*', expecting number or '-' or '(' or '!'
5851.41: syntax error, unexpected '*', expecting number or '-' or '(' or '!'
586calc: error: 4444 != 1])
587
588# The same, but this time exercising explicitly triggered syntax errors.
589# POSIX says the lookahead causing the error should not be discarded.
590_AT_CHECK_CALC_ERROR([$1], [0], [(!) + (0 0) = 1], [102],
591[1.10: syntax error, unexpected number
592calc: error: 2222 != 1])
593_AT_CHECK_CALC_ERROR([$1], [0], [(- *) + (0 0) = 1], [113],
594[1.4: syntax error, unexpected '*', expecting number or '-' or '(' or '!'
5951.12: syntax error, unexpected number
596calc: error: 2222 != 1])
597
598# Check that yyerrok works properly: second error is not reported,
599# third and fourth are. Parse status is succesfull.
600_AT_CHECK_CALC_ERROR([$1], [0], [(* *) + (*) + (*)], [113],
601[1.2: syntax error, unexpected '*', expecting number or '-' or '(' or '!'
6021.10: syntax error, unexpected '*', expecting number or '-' or '(' or '!'
6031.16: syntax error, unexpected '*', expecting number or '-' or '(' or '!'])
604
605AT_BISON_OPTION_POPDEFS
606
607AT_CLEANUP
608])# AT_CHECK_CALC
609
610
611
612
613# ------------------------ #
614# Simple LALR Calculator. #
615# ------------------------ #
616
617AT_BANNER([[Simple LALR(1) Calculator.]])
618
619# AT_CHECK_CALC_LALR([BISON-OPTIONS])
620# -----------------------------------
621# Start a testing chunk which compiles `calc' grammar with
622# BISON-OPTIONS, and performs several tests over the parser.
623m4_define([AT_CHECK_CALC_LALR],
624[AT_CHECK_CALC($@)])
625
626AT_CHECK_CALC_LALR()
627
628AT_CHECK_CALC_LALR([%defines])
629AT_CHECK_CALC_LALR([%locations])
630
631AT_CHECK_CALC_LALR([%name-prefix="calc"]) dnl test deprecated `='
632AT_CHECK_CALC_LALR([%verbose])
633AT_CHECK_CALC_LALR([%yacc])
634AT_CHECK_CALC_LALR([%error-verbose])
635
636AT_CHECK_CALC_LALR([%define api.pure %locations])
637AT_CHECK_CALC_LALR([%define api.push-pull both %define api.pure %locations])
638AT_CHECK_CALC_LALR([%error-verbose %locations])
639
640AT_CHECK_CALC_LALR([%error-verbose %locations %defines %name-prefix "calc" %verbose %yacc])
641
642AT_CHECK_CALC_LALR([%debug])
643AT_CHECK_CALC_LALR([%error-verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc])
644
645AT_CHECK_CALC_LALR([%define api.pure %error-verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc])
646AT_CHECK_CALC_LALR([%define api.push-pull both %define api.pure %error-verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc])
647
648AT_CHECK_CALC_LALR([%define api.pure %error-verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count}])
649
650
651# ----------------------- #
652# Simple GLR Calculator. #
653# ----------------------- #
654
655AT_BANNER([[Simple GLR Calculator.]])
656
657# AT_CHECK_CALC_GLR([BISON-OPTIONS])
658# ----------------------------------
659# Start a testing chunk which compiles `calc' grammar with
660# BISON-OPTIONS and %glr-parser, and performs several tests over the parser.
661m4_define([AT_CHECK_CALC_GLR],
662[AT_CHECK_CALC([%glr-parser] $@)])
663
664
665AT_CHECK_CALC_GLR()
666
667AT_CHECK_CALC_GLR([%defines])
668AT_CHECK_CALC_GLR([%locations])
669AT_CHECK_CALC_GLR([%name-prefix "calc"])
670AT_CHECK_CALC_GLR([%verbose])
671AT_CHECK_CALC_GLR([%yacc])
672AT_CHECK_CALC_GLR([%error-verbose])
673
674AT_CHECK_CALC_GLR([%define api.pure %locations])
675AT_CHECK_CALC_GLR([%error-verbose %locations])
676
677AT_CHECK_CALC_GLR([%error-verbose %locations %defines %name-prefix "calc" %verbose %yacc])
678
679AT_CHECK_CALC_GLR([%debug])
680AT_CHECK_CALC_GLR([%error-verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc])
681
682AT_CHECK_CALC_GLR([%define api.pure %error-verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc])
683
684AT_CHECK_CALC_GLR([%define api.pure %error-verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count}])
685
686
687# ----------------------------- #
688# Simple LALR1 C++ Calculator. #
689# ----------------------------- #
690
691AT_BANNER([[Simple LALR(1) C++ Calculator.]])
692
693# First let's try using %skeleton
694AT_CHECK_CALC([%skeleton "lalr1.cc" %defines %locations])
695
696# AT_CHECK_CALC_LALR1_CC([BISON-OPTIONS])
697# ---------------------------------------
698# Start a testing chunk which compiles `calc' grammar with
699# the C++ skeleton, and performs several tests over the parser.
700m4_define([AT_CHECK_CALC_LALR1_CC],
701[AT_CHECK_CALC([%language "C++" %defines %locations] $@)])
702
703AT_CHECK_CALC_LALR1_CC([])
704AT_CHECK_CALC_LALR1_CC([%define location_type Span])
705AT_CHECK_CALC_LALR1_CC([%error-verbose %name-prefix "calc" %verbose %yacc])
706AT_CHECK_CALC_LALR1_CC([%error-verbose %debug %name-prefix "calc" %verbose %yacc])
707
708AT_CHECK_CALC_LALR1_CC([%pure-parser %error-verbose %debug %name-prefix "calc" %verbose %yacc])
709
710AT_CHECK_CALC_LALR1_CC([%pure-parser %error-verbose %debug %name-prefix "calc" %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count}])
711
712
713
714# --------------------------- #
715# Simple GLR C++ Calculator. #
716# --------------------------- #
717
718AT_BANNER([[Simple GLR C++ Calculator.]])
719
720# Again, we try also using %skeleton.
721AT_CHECK_CALC([%skeleton "glr.cc" %defines %locations])
722
723# AT_CHECK_CALC_GLR_CC([BISON-OPTIONS])
724# -------------------------------------
725# Start a testing chunk which compiles `calc' grammar with
726# the GLR C++ skeleton, and performs several tests over the parser.
727m4_define([AT_CHECK_CALC_GLR_CC],
728[AT_CHECK_CALC([%language "C++" %glr-parser %defines %locations] $@)])
729
730AT_CHECK_CALC_GLR_CC([])
731AT_CHECK_CALC_GLR_CC([%define location_type Span])
732AT_CHECK_CALC_GLR_CC([%error-verbose %name-prefix "calc" %verbose %yacc])
733
734AT_CHECK_CALC_GLR_CC([%debug])
735AT_CHECK_CALC_GLR_CC([%error-verbose %debug %name-prefix "calc" %verbose %yacc])
736
737AT_CHECK_CALC_GLR_CC([%pure-parser %error-verbose %debug %name-prefix "calc" %verbose %yacc])
738
739AT_CHECK_CALC_GLR_CC([%pure-parser %error-verbose %debug %name-prefix "calc" %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count}])