]> git.saurik.com Git - bison.git/blame - tests/calc.at
tests: handle locations in a more generic way.
[bison.git] / tests / calc.at
CommitLineData
82c53be4 1# Simple calculator. -*- Autotest -*-
419ab105 2
c932d613 3# Copyright (C) 2000-2012 Free Software Foundation, Inc.
bfb07874 4
f16b0819 5# This program is free software: you can redistribute it and/or modify
342b8b6e 6# it under the terms of the GNU General Public License as published by
f16b0819
PE
7# the Free Software Foundation, either version 3 of the License, or
8# (at your option) any later version.
9#
342b8b6e
AD
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.
f16b0819 14#
342b8b6e 15# You should have received a copy of the GNU General Public License
f16b0819 16# along with this program. If not, see <http://www.gnu.org/licenses/>.
bfb07874 17
bfb07874
AD
18## ---------------------------------------------------- ##
19## Compile the grammar described in the documentation. ##
20## ---------------------------------------------------- ##
21
22
23# ------------------------- #
24# Helping Autotest macros. #
25# ------------------------- #
26
27
2a8d363a
AD
28# _AT_DATA_CALC_Y($1, $2, $3, [BISON-DIRECTIVES])
29# -----------------------------------------------
462503f8
JD
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.
c8c220d1
AD
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.
342b8b6e
AD
43m4_define([_AT_DATA_CALC_Y],
44[m4_if([$1$2$3], $[1]$[2]$[3], [],
45 [m4_fatal([$0: Invalid arguments: $@])])dnl
c8c220d1
AD
46
47m4_pushdef([AT_CALC_MAIN],
363bf732
AD
48[#include <stdlib.h> /* abort */
49#if HAVE_UNISTD_H
c8c220d1
AD
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
462503f8
JD
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 {
ed228e60
AD
129 AT_LOC_LAST_LINE++;
130 AT_LOC_LAST_COLUMN = 1;
462503f8
JD
131 }
132 else
ed228e60 133 AT_LOC_LAST_COLUMN++;
462503f8
JD
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([
ed228e60
AD
191 AT_LOC_LAST_COLUMN = 1;
192 AT_LOC_LAST_LINE = 1;
462503f8
JD
193])[
194 }
195
ecbca7db
AD
196 /* Skip current token, then white spaces. */
197 do
462503f8
JD
198 {
199]AT_LOCATION_IF(
ed228e60
AD
200[ AT_LOC_FIRST_COLUMN = AT_LOC_LAST_COLUMN;
201 AT_LOC_FIRST_LINE = AT_LOC_LAST_LINE;
462503f8
JD
202])[
203 }
ecbca7db 204 while ((c = get_char (]AT_LEX_ARGS[)) == ' ' || c == '\t');
462503f8
JD
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
9501dc6e 223AT_DATA_GRAMMAR([calc.y],
bfb07874 224[[/* Infix notation calculator--calc */
fb9712a9 225]$4
8f7e3cf9 226AT_SKEL_CC_IF(
16dc6a9e 227[%define global_tokens_and_yystype])[
3e4a253b
AD
228%code requires
229{
0f404a0a 230]AT_LOCATION_TYPE_IF([[
cacfdef7
AD
231# include <iostream>
232 struct Point
233 {
234 int l;
235 int c;
236 };
237
238 struct Span
239 {
0f404a0a
AD
240 Point first;
241 Point last;
cacfdef7 242 };
0f404a0a 243
e7bab2df
AD
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)
0f404a0a
AD
256
257]])[
cacfdef7
AD
258 /* Exercise pre-prologue dependency to %union. */
259 typedef int semantic_value;
462503f8
JD
260}
261
262/* Exercise %union. */
263%union
264{
265 semantic_value ival;
266};
267
3e4a253b
AD
268%code provides
269{
bfb07874 270#include <stdio.h>
462503f8 271/* The input. */
c8c220d1
AD
272extern FILE *input;
273extern semantic_value global_result;
274extern int global_count;]AT_SKEL_CC_IF([[
462503f8 275#ifndef YYLTYPE
16d9244d 276# define YYLTYPE ]AT_NAME_PREFIX[::parser::location_type
462503f8 277#endif
ed228e60 278]])[
462503f8 279}
2ce10144 280
3e4a253b
AD
281%code
282{
da209f94 283#include <assert.h>
6e26ca8c 284#include <string.h>
affac613 285#define USE(Var)
bfb07874 286
462503f8 287FILE *input;
c19988b7 288static int power (int base, int exponent);
0f404a0a 289
462503f8 290]AT_SKEL_CC_IF(,
67a25fed 291[/* yyerror receives the location if:
2a8d363a
AD
292 - %location & %pure & %glr
293 - %location & %pure & %yacc & %parse-param. */
ebc3737e 294static void yyerror (AT_YYERROR_ARG_LOC_IF([YYLTYPE *llocp, ])
caf37a36 295 AT_PARAM_IF([semantic_value *result, int *count, ])
93724f13 296 const char *s
d02b25f9 297 );])[
462503f8
JD
298int yylex (]AT_LEX_FORMALS[);
299}
c19988b7 300
cacfdef7
AD
301]AT_SKEL_CC_IF([AT_LOCATION_TYPE_IF([], [
302/* The lalr1.cc skeleton, for backward compatibility, defines
8f7e3cf9
AD
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 {
ef51bfa7 308 @$.initialize ();
8f7e3cf9 309}
cacfdef7 310])])[
8f7e3cf9 311
6b7e85b9 312/* Bison Declarations */
c19988b7 313%token CALC_EOF 0 "end of input"
213e640e
AD
314%token <ival> NUM "number"
315%type <ival> exp
bfb07874 316
3d8082ad 317%nonassoc '=' /* comparison */
bfb07874
AD
318%left '-' '+'
319%left '*' '/'
320%left NEG /* negation--unary minus */
321%right '^' /* exponentiation */
322
323/* Grammar follows */
324%%
325input:
b7c49edf 326 line
2a8d363a 327| input line { ]AT_PARAM_IF([++*count; ++global_count;])[ }
bfb07874
AD
328;
329
330line:
c19988b7 331 '\n'
affac613 332| exp '\n' { ]AT_PARAM_IF([*result = global_result = $1], [USE ($1)])[; }
bfb07874
AD
333;
334
335exp:
336 NUM { $$ = $1; }
337| exp '=' exp
338 {
2a8d363a
AD
339 if ($1 != $3)
340 fprintf (stderr, "calc: error: %d != %d\n", $1, $3);
341 $$ = $1;
bfb07874
AD
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; }
65015668 350| '(' error ')' { $$ = 1111; yyerrok; }
8f3596a6
AD
351| '!' { $$ = 0; YYERROR; }
352| '-' error { $$ = 0; YYERROR; }
bfb07874
AD
353;
354%%
bfb07874 355
3d8082ad
AD
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
8f7e3cf9 366]AT_SKEL_CC_IF(
cacfdef7
AD
367[AT_LOCATION_TYPE_IF([[
368 std::ostream&
369 operator<< (std::ostream& o, const Span& s)
370 {
0f404a0a
AD
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;
cacfdef7
AD
376 return o;
377 }
378]])
74909941 379AT_YYERROR_DEFINE],
3e4a253b
AD
380[/* A C error reporting function. */
381static void
ebc3737e 382yyerror (AT_YYERROR_ARG_LOC_IF([YYLTYPE *llocp, ])
caf37a36 383 AT_PARAM_IF([semantic_value *result, int *count, ])
7548fed2
AD
384 const char *s)
385{
386AT_PARAM_IF([(void) result; (void) count;])
387AT_YYERROR_SEES_LOC_IF([
388 fprintf (stderr, "%d.%d",
ed228e60
AD
389 AT_LOC_FIRST_LINE, AT_LOC_FIRST_COLUMN);
390 if (AT_LOC_FIRST_LINE != AT_LOC_LAST_LINE)
7548fed2 391 fprintf (stderr, "-%d.%d",
3d8082ad 392 AT_LOC_LAST_LINE, AT_LOC_LAST_COLUMN - 1);
ed228e60 393 else if (AT_LOC_FIRST_COLUMN != AT_LOC_LAST_COLUMN - 1)
7548fed2 394 fprintf (stderr, "-%d",
3d8082ad 395 AT_LOC_LAST_COLUMN - 1);
7548fed2
AD
396 fprintf (stderr, ": ");])
397 fprintf (stderr, "%s\n", s);
398}])[
399
c8c220d1
AD
400]AT_DEFINES_IF([],
401[AT_CALC_LEX
402AT_CALC_MAIN])[
bfb07874 403]])
c8c220d1 404
462503f8
JD
405AT_DEFINES_IF([AT_DATA_SOURCE([[calc-lex.c]AT_SKEL_CC_IF([[c]])],
406[[#include "calc.h]AT_SKEL_CC_IF([[h]])["
407
c8c220d1
AD
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])
462503f8 415m4_popdef([AT_CALC_LEX])
bfb07874
AD
416])# _AT_DATA_CALC_Y
417
418
419# AT_DATA_CALC_Y([BISON-OPTIONS])
420# -------------------------------
462503f8
JD
421# Produce `calc.y' and, if %defines was specified, `calc-lex.c' or
422# `calc-lex.cc'.
342b8b6e 423m4_define([AT_DATA_CALC_Y],
9e32add8 424[_AT_DATA_CALC_Y($[1], $[2], $[3], [$1])
f50adbbd 425])
bfb07874
AD
426
427
428
d9963c85
PE
429# _AT_CHECK_CALC(BISON-OPTIONS, INPUT, [NUM-STDERR-LINES])
430# --------------------------------------------------------
bfb07874 431# Run `calc' on INPUT and expect no STDOUT nor STDERR.
342b8b6e 432#
f50adbbd 433# If BISON-OPTIONS contains `%debug' but not `%glr-parser', then
d9963c85 434#
f50adbbd 435# NUM-STDERR-LINES is the number of expected lines on stderr.
d9963c85 436# Currently this is ignored, though, since the output format is fluctuating.
f50adbbd
AD
437#
438# We don't count GLR's traces yet, since its traces are somewhat
439# different from LALR's.
342b8b6e
AD
440m4_define([_AT_CHECK_CALC],
441[AT_DATA([[input]],
442[[$2
443]])
f50adbbd 444AT_PARSER_CHECK([./calc input], 0, [], [stderr])
342b8b6e
AD
445])
446
447
b0f98b10 448# _AT_CHECK_CALC_ERROR(BISON-OPTIONS, EXIT-STATUS, INPUT,
d9963c85 449# [NUM-STDERR-LINES],
2a8d363a 450# [VERBOSE-AND-LOCATED-ERROR-MESSAGE])
b0f98b10 451# ---------------------------------------------------------
6e649e65 452# Run `calc' on INPUT, and expect a `syntax error' message.
342b8b6e 453#
b7c49edf
AD
454# If INPUT starts with a slash, it is used as absolute input file name,
455# otherwise as contents.
456#
d9963c85
PE
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#
9e32add8 460# If BISON-OPTIONS contains `%location', then make sure the ERROR-LOCATION
342b8b6e
AD
461# is correctly output on stderr.
462#
f50adbbd 463# If BISON-OPTIONS contains `%error-verbose', then make sure the
6e649e65 464# IF-YYERROR-VERBOSE message is properly output after `syntax error, '
342b8b6e
AD
465# on STDERR.
466#
f50adbbd
AD
467# If BISON-OPTIONS contains `%debug' but not `%glr', then NUM-STDERR-LINES
468# is the number of expected lines on stderr.
342b8b6e 469m4_define([_AT_CHECK_CALC_ERROR],
b0f98b10
AD
470[m4_bmatch([$3], [^/],
471 [AT_PARSER_CHECK([./calc $3], $2, [], [stderr])],
b7c49edf 472 [AT_DATA([[input]],
b0f98b10 473[[$3
342b8b6e 474]])
b0f98b10 475AT_PARSER_CHECK([./calc input], $2, [], [stderr])])
342b8b6e 476
51dec47b
AD
477# Normalize the observed and expected error messages, depending upon the
478# options.
479# 1. Remove the traces from observed.
9280d3ef
AD
480sed '/^Starting/d
481/^Entering/d
f50adbbd 482/^Stack/d
9280d3ef
AD
483/^Reading/d
484/^Reducing/d
31c10e38 485/^Return/d
9280d3ef
AD
486/^Shifting/d
487/^state/d
dd5f2af2 488/^Cleanup:/d
9280d3ef
AD
489/^Error:/d
490/^Next/d
31c10e38 491/^Now/d
9280d3ef 492/^Discarding/d
62b08cfc 493/ \$[[0-9$]]* = /d
9280d3ef 494/^yydestructor:/d' stderr >at-stderr
342b8b6e 495mv at-stderr stderr
51dec47b
AD
496# 2. Create the reference error message.
497AT_DATA([[expout]],
b0f98b10 498[$5
342b8b6e 499])
51dec47b 500# 3. If locations are not used, remove them.
2a8d363a 501AT_YYERROR_SEES_LOC_IF([],
51dec47b
AD
502[[sed 's/^[-0-9.]*: //' expout >at-expout
503mv at-expout expout]])
504# 4. If error-verbose is not used, strip the`, unexpected....' part.
f50adbbd 505m4_bmatch([$1], [%error-verbose], [],
6e649e65 506[[sed 's/syntax error, .*$/syntax error/' expout >at-expout
51dec47b
AD
507mv at-expout expout]])
508# 5. Check
509AT_CHECK([cat stderr], 0, [expout])
342b8b6e 510])
bfb07874
AD
511
512
eb46d61f
AD
513# AT_CHECK_CALC([BISON-OPTIONS])
514# ------------------------------
bfb07874
AD
515# Start a testing chunk which compiles `calc' grammar with
516# BISON-OPTIONS, and performs several tests over the parser.
342b8b6e 517m4_define([AT_CHECK_CALC],
eb46d61f 518[m4_ifval([$2], [m4_fatal([$0: expected a single argument])])
bfb07874 519
eb46d61f
AD
520# We use integers to avoid dependencies upon the precision of doubles.
521AT_SETUP([Calculator $1])
907e3bc8 522
67a25fed 523AT_BISON_OPTION_PUSHDEFS([$1])
2a8d363a 524
bfb07874 525AT_DATA_CALC_Y([$1])
c8c220d1 526AT_FULL_COMPILE([calc], AT_DEFINES_IF([[lex], [main]]))
bfb07874
AD
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
e7cb57c0 542(2^2)^3 = 64],
d1ff7a7c 543 [842])
bfb07874 544
6e649e65 545# Some syntax errors.
d1ff7a7c 546_AT_CHECK_CALC_ERROR([$1], [1], [0 0], [15],
cd48d21d 547 [1.3: syntax error, unexpected number])
d1ff7a7c 548_AT_CHECK_CALC_ERROR([$1], [1], [1//2], [20],
cd48d21d 549 [1.3: syntax error, unexpected '/', expecting number or '-' or '(' or '!'])
e757bb10 550_AT_CHECK_CALC_ERROR([$1], [1], [error], [5],
cd48d21d 551 [1.1: syntax error, unexpected $undefined])
d1ff7a7c 552_AT_CHECK_CALC_ERROR([$1], [1], [1 = 2 = 3], [30],
cd48d21d 553 [1.7: syntax error, unexpected '='])
b0f98b10 554_AT_CHECK_CALC_ERROR([$1], [1],
bfb07874
AD
555 [
556+1],
d1ff7a7c 557 [20],
cd48d21d 558 [2.1: syntax error, unexpected '+'])
b7c49edf 559# Exercise error messages with EOF: work on an empty file.
cea1469d 560_AT_CHECK_CALC_ERROR([$1], [1], [/dev/null], [4],
cd48d21d 561 [1.1: syntax error, unexpected end of input])
51dec47b
AD
562
563# Exercise the error token: without it, we die at the first error,
0b86fc41
AD
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#
742e4900
JD
574# - check the lookahead that triggers an error is not discarded
575# when we enter error recovery. Below, the lookahead causing the
0b86fc41
AD
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],
d1ff7a7c 581 [250],
cd48d21d
AD
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 '!'
0b86fc41
AD
586calc: error: 4444 != 1])
587
588# The same, but this time exercising explicitly triggered syntax errors.
742e4900 589# POSIX says the lookahead causing the error should not be discarded.
d1ff7a7c 590_AT_CHECK_CALC_ERROR([$1], [0], [(!) + (0 0) = 1], [102],
cd48d21d 591[1.10: syntax error, unexpected number
0b86fc41 592calc: error: 2222 != 1])
d1ff7a7c 593_AT_CHECK_CALC_ERROR([$1], [0], [(- *) + (0 0) = 1], [113],
cd48d21d
AD
594[1.4: syntax error, unexpected '*', expecting number or '-' or '(' or '!'
5951.12: syntax error, unexpected number
82c53be4 596calc: error: 2222 != 1])
65015668
AD
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
67a25fed 605AT_BISON_OPTION_POPDEFS
2a8d363a 606
d803322e 607AT_CLEANUP
bfb07874
AD
608])# AT_CHECK_CALC
609
610
611
612
f50adbbd
AD
613# ------------------------ #
614# Simple LALR Calculator. #
615# ------------------------ #
616
8f7e3cf9 617AT_BANNER([[Simple LALR(1) Calculator.]])
f50adbbd
AD
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
9e32add8 628AT_CHECK_CALC_LALR([%defines])
ae7453f2 629AT_CHECK_CALC_LALR([%locations])
cacfdef7 630
02975b9a 631AT_CHECK_CALC_LALR([%name-prefix="calc"]) dnl test deprecated `='
9e32add8
AD
632AT_CHECK_CALC_LALR([%verbose])
633AT_CHECK_CALC_LALR([%yacc])
f50adbbd
AD
634AT_CHECK_CALC_LALR([%error-verbose])
635
d9df47b6 636AT_CHECK_CALC_LALR([%define api.pure %locations])
f37495f6 637AT_CHECK_CALC_LALR([%define api.push-pull both %define api.pure %locations])
ae7453f2 638AT_CHECK_CALC_LALR([%error-verbose %locations])
f50adbbd 639
02975b9a 640AT_CHECK_CALC_LALR([%error-verbose %locations %defines %name-prefix "calc" %verbose %yacc])
f50adbbd
AD
641
642AT_CHECK_CALC_LALR([%debug])
02975b9a 643AT_CHECK_CALC_LALR([%error-verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc])
c19988b7 644
d9df47b6 645AT_CHECK_CALC_LALR([%define api.pure %error-verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc])
f37495f6 646AT_CHECK_CALC_LALR([%define api.push-pull both %define api.pure %error-verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc])
2a8d363a 647
d9df47b6 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}])
f50adbbd
AD
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],
ae7453f2 662[AT_CHECK_CALC([%glr-parser] $@)])
f50adbbd 663
bfb07874 664
f50adbbd 665AT_CHECK_CALC_GLR()
bfb07874 666
9e32add8 667AT_CHECK_CALC_GLR([%defines])
ae7453f2 668AT_CHECK_CALC_GLR([%locations])
02975b9a 669AT_CHECK_CALC_GLR([%name-prefix "calc"])
9e32add8
AD
670AT_CHECK_CALC_GLR([%verbose])
671AT_CHECK_CALC_GLR([%yacc])
f50adbbd 672AT_CHECK_CALC_GLR([%error-verbose])
bfb07874 673
d9df47b6 674AT_CHECK_CALC_GLR([%define api.pure %locations])
ae7453f2 675AT_CHECK_CALC_GLR([%error-verbose %locations])
bfb07874 676
02975b9a 677AT_CHECK_CALC_GLR([%error-verbose %locations %defines %name-prefix "calc" %verbose %yacc])
bfb07874 678
f50adbbd 679AT_CHECK_CALC_GLR([%debug])
02975b9a 680AT_CHECK_CALC_GLR([%error-verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc])
21964f43 681
d9df47b6 682AT_CHECK_CALC_GLR([%define api.pure %error-verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc])
2a8d363a 683
d9df47b6 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}])
7548fed2
AD
685
686
687# ----------------------------- #
688# Simple LALR1 C++ Calculator. #
689# ----------------------------- #
690
8f7e3cf9 691AT_BANNER([[Simple LALR(1) C++ Calculator.]])
7548fed2 692
0e021770
PE
693# First let's try using %skeleton
694AT_CHECK_CALC([%skeleton "lalr1.cc" %defines %locations])
695
7548fed2
AD
696# AT_CHECK_CALC_LALR1_CC([BISON-OPTIONS])
697# ---------------------------------------
698# Start a testing chunk which compiles `calc' grammar with
caf37a36 699# the C++ skeleton, and performs several tests over the parser.
7548fed2 700m4_define([AT_CHECK_CALC_LALR1_CC],
0e021770 701[AT_CHECK_CALC([%language "C++" %defines %locations] $@)])
8f7e3cf9
AD
702
703AT_CHECK_CALC_LALR1_CC([])
cacfdef7 704AT_CHECK_CALC_LALR1_CC([%define location_type Span])
02975b9a 705AT_CHECK_CALC_LALR1_CC([%error-verbose %name-prefix "calc" %verbose %yacc])
02975b9a 706AT_CHECK_CALC_LALR1_CC([%error-verbose %debug %name-prefix "calc" %verbose %yacc])
7548fed2 707
02975b9a 708AT_CHECK_CALC_LALR1_CC([%pure-parser %error-verbose %debug %name-prefix "calc" %verbose %yacc])
0b86fc41 709
02975b9a 710AT_CHECK_CALC_LALR1_CC([%pure-parser %error-verbose %debug %name-prefix "calc" %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count}])
7548fed2 711
7548fed2 712
7548fed2 713
8f7e3cf9
AD
714# --------------------------- #
715# Simple GLR C++ Calculator. #
716# --------------------------- #
717
718AT_BANNER([[Simple GLR C++ Calculator.]])
719
0e021770
PE
720# Again, we try also using %skeleton.
721AT_CHECK_CALC([%skeleton "glr.cc" %defines %locations])
722
8f7e3cf9
AD
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],
0e021770 728[AT_CHECK_CALC([%language "C++" %glr-parser %defines %locations] $@)])
8f7e3cf9 729
fa7b79c0 730AT_CHECK_CALC_GLR_CC([])
e7bab2df 731AT_CHECK_CALC_GLR_CC([%define location_type Span])
02975b9a 732AT_CHECK_CALC_GLR_CC([%error-verbose %name-prefix "calc" %verbose %yacc])
8f7e3cf9 733
fa7b79c0 734AT_CHECK_CALC_GLR_CC([%debug])
02975b9a 735AT_CHECK_CALC_GLR_CC([%error-verbose %debug %name-prefix "calc" %verbose %yacc])
7548fed2 736
02975b9a 737AT_CHECK_CALC_GLR_CC([%pure-parser %error-verbose %debug %name-prefix "calc" %verbose %yacc])
7548fed2 738
02975b9a 739AT_CHECK_CALC_GLR_CC([%pure-parser %error-verbose %debug %name-prefix "calc" %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count}])