]> git.saurik.com Git - bison.git/blame - tests/calc.at
symtab: refactoring
[bison.git] / tests / calc.at
CommitLineData
82c53be4 1# Simple calculator. -*- Autotest -*-
419ab105 2
34136e65 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# -----------------------------------------------
6c88b51e
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
6c88b51e
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 {
4f756f88
AD
129 AT_LOC_LAST_LINE++;
130 AT_LOC_LAST_COLUMN = 1;
6c88b51e
JD
131 }
132 else
4f756f88 133 AT_LOC_LAST_COLUMN++;
6c88b51e
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([
4f756f88
AD
191 AT_LOC_LAST_COLUMN = 1;
192 AT_LOC_LAST_LINE = 1;
6c88b51e
JD
193])[
194 }
195
67f1a2c2
AD
196 /* Skip current token, then white spaces. */
197 do
6c88b51e
JD
198 {
199]AT_LOCATION_IF(
4f756f88
AD
200[ AT_LOC_FIRST_COLUMN = AT_LOC_LAST_COLUMN;
201 AT_LOC_FIRST_LINE = AT_LOC_LAST_LINE;
6c88b51e
JD
202])[
203 }
67f1a2c2 204 while ((c = get_char (]AT_LEX_ARGS[)) == ' ' || c == '\t');
6c88b51e
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[);
417e31d2 211 return ]AT_TOKEN_PREFIX[NUM;
6c88b51e
JD
212 }
213
214 /* Return end-of-file. */
215 if (c == EOF)
417e31d2 216 return ]AT_TOKEN_PREFIX[CALC_EOF;
6c88b51e
JD
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])[
c499231d
AD
228%code requires
229{
49976d5c 230]AT_LOCATION_TYPE_IF([[
24bb8c8c
AD
231# include <iostream>
232 struct Point
233 {
234 int l;
235 int c;
236 };
237
238 struct Span
239 {
49976d5c
AD
240 Point first;
241 Point last;
24bb8c8c 242 };
49976d5c
AD
243
244# define YYLLOC_DEFAULT(Current, Rhs, N) \
bb9191dd
AD
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)
49976d5c
AD
256
257]])[
24bb8c8c
AD
258 /* Exercise pre-prologue dependency to %union. */
259 typedef int semantic_value;
6c88b51e
JD
260}
261
262/* Exercise %union. */
263%union
264{
265 semantic_value ival;
266};
267
c499231d
AD
268%code provides
269{
bfb07874 270#include <stdio.h>
6c88b51e 271/* The input. */
c8c220d1
AD
272extern FILE *input;
273extern semantic_value global_result;
274extern int global_count;]AT_SKEL_CC_IF([[
6c88b51e 275#ifndef YYLTYPE
36dc3637 276# define YYLTYPE ]AT_NAME_PREFIX[::parser::location_type
6c88b51e 277#endif
4f756f88 278]])[
6c88b51e 279}
2ce10144 280
c499231d
AD
281%code
282{
459a57a9 283#include <assert.h>
6e26ca8c 284#include <string.h>
affac613 285#define USE(Var)
bfb07874 286
6c88b51e 287FILE *input;
c19988b7 288static int power (int base, int exponent);
49976d5c 289
6c88b51e 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 );])[
6c88b51e
JD
298int yylex (]AT_LEX_FORMALS[);
299}
c19988b7 300
24bb8c8c 301]AT_SKEL_CC_IF([AT_LOCATION_IF([AT_LOCATION_TYPE_IF([], [
2ea7730c 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
2ea7730c 306 excluded in C++). */
8f7e3cf9 307%initial-action {
ef51bfa7 308 @$.initialize ();
8f7e3cf9 309}
24bb8c8c 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
e9690142 317%nonassoc '=' /* comparison */
bfb07874
AD
318%left '-' '+'
319%left '*' '/'
d78f0ac9
AD
320%precedence NEG /* negation--unary minus */
321%right '^' /* exponentiation */
bfb07874
AD
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(
24bb8c8c
AD
367[AT_LOCATION_TYPE_IF([[
368 std::ostream&
369 operator<< (std::ostream& o, const Span& s)
370 {
49976d5c
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;
24bb8c8c
AD
376 return o;
377 }
378]])
379
380/* A C++ error reporting function. */
7548fed2 381void
36dc3637 382AT_NAME_PREFIX::parser::error (AT_LOCATION_IF([const location_type& l, ])const std::string& m)
7548fed2 383{
efeed023 384 std::cerr << AT_LOCATION_IF([l << ": " << ])m << std::endl;
7548fed2 385}
7548fed2 386],
c499231d
AD
387[/* A C error reporting function. */
388static void
ebc3737e 389yyerror (AT_YYERROR_ARG_LOC_IF([YYLTYPE *llocp, ])
caf37a36 390 AT_PARAM_IF([semantic_value *result, int *count, ])
7548fed2
AD
391 const char *s)
392{
393AT_PARAM_IF([(void) result; (void) count;])
394AT_YYERROR_SEES_LOC_IF([
395 fprintf (stderr, "%d.%d",
4f756f88
AD
396 AT_LOC_FIRST_LINE, AT_LOC_FIRST_COLUMN);
397 if (AT_LOC_FIRST_LINE != AT_LOC_LAST_LINE)
7548fed2 398 fprintf (stderr, "-%d.%d",
e9690142 399 AT_LOC_LAST_LINE, AT_LOC_LAST_COLUMN - 1);
4f756f88 400 else if (AT_LOC_FIRST_COLUMN != AT_LOC_LAST_COLUMN - 1)
7548fed2 401 fprintf (stderr, "-%d",
e9690142 402 AT_LOC_LAST_COLUMN - 1);
7548fed2
AD
403 fprintf (stderr, ": ");])
404 fprintf (stderr, "%s\n", s);
405}])[
406
c8c220d1
AD
407]AT_DEFINES_IF([],
408[AT_CALC_LEX
409AT_CALC_MAIN])[
bfb07874 410]])
c8c220d1 411
6c88b51e
JD
412AT_DEFINES_IF([AT_DATA_SOURCE([[calc-lex.c]AT_SKEL_CC_IF([[c]])],
413[[#include "calc.h]AT_SKEL_CC_IF([[h]])["
414
c8c220d1
AD
415]AT_CALC_LEX])
416AT_DATA_SOURCE([[calc-main.c]AT_SKEL_CC_IF([[c]])],
417[[#include "calc.h]AT_SKEL_CC_IF([[h]])["
418
419]AT_CALC_MAIN])
420])
421m4_popdef([AT_CALC_MAIN])
6c88b51e 422m4_popdef([AT_CALC_LEX])
bfb07874
AD
423])# _AT_DATA_CALC_Y
424
425
426# AT_DATA_CALC_Y([BISON-OPTIONS])
427# -------------------------------
6c88b51e
JD
428# Produce `calc.y' and, if %defines was specified, `calc-lex.c' or
429# `calc-lex.cc'.
342b8b6e 430m4_define([AT_DATA_CALC_Y],
9e32add8 431[_AT_DATA_CALC_Y($[1], $[2], $[3], [$1])
f50adbbd 432])
bfb07874
AD
433
434
435
d9963c85
PE
436# _AT_CHECK_CALC(BISON-OPTIONS, INPUT, [NUM-STDERR-LINES])
437# --------------------------------------------------------
bfb07874 438# Run `calc' on INPUT and expect no STDOUT nor STDERR.
342b8b6e 439#
f50adbbd 440# If BISON-OPTIONS contains `%debug' but not `%glr-parser', then
d9963c85 441#
f50adbbd 442# NUM-STDERR-LINES is the number of expected lines on stderr.
d9963c85 443# Currently this is ignored, though, since the output format is fluctuating.
f50adbbd
AD
444#
445# We don't count GLR's traces yet, since its traces are somewhat
446# different from LALR's.
342b8b6e
AD
447m4_define([_AT_CHECK_CALC],
448[AT_DATA([[input]],
449[[$2
450]])
f50adbbd 451AT_PARSER_CHECK([./calc input], 0, [], [stderr])
342b8b6e
AD
452])
453
454
b0f98b10 455# _AT_CHECK_CALC_ERROR(BISON-OPTIONS, EXIT-STATUS, INPUT,
d9963c85 456# [NUM-STDERR-LINES],
2a8d363a 457# [VERBOSE-AND-LOCATED-ERROR-MESSAGE])
b0f98b10 458# ---------------------------------------------------------
6e649e65 459# Run `calc' on INPUT, and expect a `syntax error' message.
342b8b6e 460#
b7c49edf
AD
461# If INPUT starts with a slash, it is used as absolute input file name,
462# otherwise as contents.
463#
d9963c85
PE
464# NUM-STDERR-LINES is the number of expected lines on stderr.
465# Currently this is ignored, though, since the output format is fluctuating.
466#
9e32add8 467# If BISON-OPTIONS contains `%location', then make sure the ERROR-LOCATION
342b8b6e
AD
468# is correctly output on stderr.
469#
cf499cff 470# If BISON-OPTIONS contains `%define parse.error verbose', then make sure the
6e649e65 471# IF-YYERROR-VERBOSE message is properly output after `syntax error, '
342b8b6e
AD
472# on STDERR.
473#
f50adbbd
AD
474# If BISON-OPTIONS contains `%debug' but not `%glr', then NUM-STDERR-LINES
475# is the number of expected lines on stderr.
342b8b6e 476m4_define([_AT_CHECK_CALC_ERROR],
b0f98b10
AD
477[m4_bmatch([$3], [^/],
478 [AT_PARSER_CHECK([./calc $3], $2, [], [stderr])],
b7c49edf 479 [AT_DATA([[input]],
b0f98b10 480[[$3
342b8b6e 481]])
b0f98b10 482AT_PARSER_CHECK([./calc input], $2, [], [stderr])])
342b8b6e 483
51dec47b
AD
484# Normalize the observed and expected error messages, depending upon the
485# options.
486# 1. Remove the traces from observed.
9280d3ef
AD
487sed '/^Starting/d
488/^Entering/d
f50adbbd 489/^Stack/d
9280d3ef
AD
490/^Reading/d
491/^Reducing/d
31c10e38 492/^Return/d
9280d3ef
AD
493/^Shifting/d
494/^state/d
dd5f2af2 495/^Cleanup:/d
9280d3ef
AD
496/^Error:/d
497/^Next/d
31c10e38 498/^Now/d
9280d3ef 499/^Discarding/d
62b08cfc 500/ \$[[0-9$]]* = /d
9280d3ef 501/^yydestructor:/d' stderr >at-stderr
342b8b6e 502mv at-stderr stderr
51dec47b
AD
503# 2. Create the reference error message.
504AT_DATA([[expout]],
b0f98b10 505[$5
342b8b6e 506])
51dec47b 507# 3. If locations are not used, remove them.
2a8d363a 508AT_YYERROR_SEES_LOC_IF([],
51dec47b
AD
509[[sed 's/^[-0-9.]*: //' expout >at-expout
510mv at-expout expout]])
511# 4. If error-verbose is not used, strip the`, unexpected....' part.
cf499cff 512m4_bmatch([$1], [%define parse.error verbose], [],
6e649e65 513[[sed 's/syntax error, .*$/syntax error/' expout >at-expout
51dec47b
AD
514mv at-expout expout]])
515# 5. Check
516AT_CHECK([cat stderr], 0, [expout])
342b8b6e 517])
bfb07874
AD
518
519
fb9712a9
AD
520# AT_CHECK_CALC([BISON-OPTIONS, [EXPECTED-TO-FAIL]])
521# --------------------------------------------------
bfb07874
AD
522# Start a testing chunk which compiles `calc' grammar with
523# BISON-OPTIONS, and performs several tests over the parser.
907e3bc8 524# However, if EXPECTED-TO-FAIL is nonempty, this test is expected to fail.
342b8b6e 525m4_define([AT_CHECK_CALC],
bfb07874
AD
526[# We use integers to avoid dependencies upon the precision of doubles.
527AT_SETUP([Calculator $1])
528
907e3bc8
PE
529m4_ifval([$2], [AT_CHECK([exit 77])])
530
67a25fed 531AT_BISON_OPTION_PUSHDEFS([$1])
2a8d363a 532
bfb07874 533AT_DATA_CALC_Y([$1])
c8c220d1 534AT_FULL_COMPILE([calc], AT_DEFINES_IF([[lex], [main]]))
bfb07874
AD
535
536# Test the priorities.
537_AT_CHECK_CALC([$1],
538[1 + 2 * 3 = 7
5391 + 2 * -3 = -5
540
541-1^2 = -1
542(-1)^2 = 1
543
544---1 = -1
545
5461 - 2 - 3 = -4
5471 - (2 - 3) = 2
548
5492^2^3 = 256
e7cb57c0 550(2^2)^3 = 64],
d1ff7a7c 551 [842])
bfb07874 552
6e649e65 553# Some syntax errors.
d1ff7a7c 554_AT_CHECK_CALC_ERROR([$1], [1], [0 0], [15],
cd48d21d 555 [1.3: syntax error, unexpected number])
d1ff7a7c 556_AT_CHECK_CALC_ERROR([$1], [1], [1//2], [20],
cd48d21d 557 [1.3: syntax error, unexpected '/', expecting number or '-' or '(' or '!'])
e757bb10 558_AT_CHECK_CALC_ERROR([$1], [1], [error], [5],
cd48d21d 559 [1.1: syntax error, unexpected $undefined])
d1ff7a7c 560_AT_CHECK_CALC_ERROR([$1], [1], [1 = 2 = 3], [30],
cd48d21d 561 [1.7: syntax error, unexpected '='])
b0f98b10 562_AT_CHECK_CALC_ERROR([$1], [1],
bfb07874
AD
563 [
564+1],
d1ff7a7c 565 [20],
cd48d21d 566 [2.1: syntax error, unexpected '+'])
b7c49edf 567# Exercise error messages with EOF: work on an empty file.
cea1469d 568_AT_CHECK_CALC_ERROR([$1], [1], [/dev/null], [4],
cd48d21d 569 [1.1: syntax error, unexpected end of input])
51dec47b
AD
570
571# Exercise the error token: without it, we die at the first error,
0b86fc41
AD
572# hence be sure to
573#
574# - have several errors which exercise different shift/discardings
575# - (): nothing to pop, nothing to discard
576# - (1 + 1 + 1 +): a lot to pop, nothing to discard
577# - (* * *): nothing to pop, a lot to discard
578# - (1 + 2 * *): some to pop and discard
579#
580# - test the action associated to `error'
581#
742e4900
JD
582# - check the lookahead that triggers an error is not discarded
583# when we enter error recovery. Below, the lookahead causing the
0b86fc41
AD
584# first error is ")", which is needed to recover from the error and
585# produce the "0" that triggers the "0 != 1" error.
586#
587_AT_CHECK_CALC_ERROR([$1], [0],
588 [() + (1 + 1 + 1 +) + (* * *) + (1 * 2 * *) = 1],
d1ff7a7c 589 [250],
cd48d21d
AD
590[1.2: syntax error, unexpected ')', expecting number or '-' or '(' or '!'
5911.18: syntax error, unexpected ')', expecting number or '-' or '(' or '!'
5921.23: syntax error, unexpected '*', expecting number or '-' or '(' or '!'
5931.41: syntax error, unexpected '*', expecting number or '-' or '(' or '!'
0b86fc41
AD
594calc: error: 4444 != 1])
595
596# The same, but this time exercising explicitly triggered syntax errors.
742e4900 597# POSIX says the lookahead causing the error should not be discarded.
d1ff7a7c 598_AT_CHECK_CALC_ERROR([$1], [0], [(!) + (0 0) = 1], [102],
cd48d21d 599[1.10: syntax error, unexpected number
0b86fc41 600calc: error: 2222 != 1])
d1ff7a7c 601_AT_CHECK_CALC_ERROR([$1], [0], [(- *) + (0 0) = 1], [113],
cd48d21d
AD
602[1.4: syntax error, unexpected '*', expecting number or '-' or '(' or '!'
6031.12: syntax error, unexpected number
82c53be4 604calc: error: 2222 != 1])
65015668
AD
605
606# Check that yyerrok works properly: second error is not reported,
607# third and fourth are. Parse status is succesfull.
608_AT_CHECK_CALC_ERROR([$1], [0], [(* *) + (*) + (*)], [113],
609[1.2: syntax error, unexpected '*', expecting number or '-' or '(' or '!'
6101.10: syntax error, unexpected '*', expecting number or '-' or '(' or '!'
6111.16: syntax error, unexpected '*', expecting number or '-' or '(' or '!'])
612
67a25fed 613AT_BISON_OPTION_POPDEFS
2a8d363a 614
d803322e 615AT_CLEANUP
bfb07874
AD
616])# AT_CHECK_CALC
617
618
619
620
f50adbbd
AD
621# ------------------------ #
622# Simple LALR Calculator. #
623# ------------------------ #
624
8f7e3cf9 625AT_BANNER([[Simple LALR(1) Calculator.]])
f50adbbd
AD
626
627# AT_CHECK_CALC_LALR([BISON-OPTIONS])
628# -----------------------------------
629# Start a testing chunk which compiles `calc' grammar with
630# BISON-OPTIONS, and performs several tests over the parser.
631m4_define([AT_CHECK_CALC_LALR],
632[AT_CHECK_CALC($@)])
633
634AT_CHECK_CALC_LALR()
635
9e32add8 636AT_CHECK_CALC_LALR([%defines])
ae7453f2 637AT_CHECK_CALC_LALR([%locations])
24bb8c8c 638
02975b9a 639AT_CHECK_CALC_LALR([%name-prefix="calc"]) dnl test deprecated `='
9e32add8
AD
640AT_CHECK_CALC_LALR([%verbose])
641AT_CHECK_CALC_LALR([%yacc])
cf499cff 642AT_CHECK_CALC_LALR([%define parse.error verbose])
f50adbbd 643
d9df47b6 644AT_CHECK_CALC_LALR([%define api.pure %locations])
cf499cff
JD
645AT_CHECK_CALC_LALR([%define api.push-pull both %define api.pure %locations])
646AT_CHECK_CALC_LALR([%define parse.error verbose %locations])
f50adbbd 647
cf499cff
JD
648AT_CHECK_CALC_LALR([%define parse.error verbose %locations %defines %name-prefix "calc" %verbose %yacc])
649AT_CHECK_CALC_LALR([%define parse.error verbose %locations %defines %name-prefix "calc" %define api.tokens.prefix "TOK_" %verbose %yacc])
f50adbbd
AD
650
651AT_CHECK_CALC_LALR([%debug])
cf499cff 652AT_CHECK_CALC_LALR([%define parse.error verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc])
c19988b7 653
cf499cff
JD
654AT_CHECK_CALC_LALR([%define api.pure %define parse.error verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc])
655AT_CHECK_CALC_LALR([%define api.push-pull both %define api.pure %define parse.error verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc])
2a8d363a 656
cf499cff 657AT_CHECK_CALC_LALR([%define api.pure %define parse.error verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count}])
f50adbbd
AD
658
659
660# ----------------------- #
661# Simple GLR Calculator. #
662# ----------------------- #
663
664AT_BANNER([[Simple GLR Calculator.]])
665
666# AT_CHECK_CALC_GLR([BISON-OPTIONS])
667# ----------------------------------
668# Start a testing chunk which compiles `calc' grammar with
669# BISON-OPTIONS and %glr-parser, and performs several tests over the parser.
670m4_define([AT_CHECK_CALC_GLR],
ae7453f2 671[AT_CHECK_CALC([%glr-parser] $@)])
f50adbbd 672
bfb07874 673
f50adbbd 674AT_CHECK_CALC_GLR()
bfb07874 675
9e32add8 676AT_CHECK_CALC_GLR([%defines])
ae7453f2 677AT_CHECK_CALC_GLR([%locations])
02975b9a 678AT_CHECK_CALC_GLR([%name-prefix "calc"])
9e32add8
AD
679AT_CHECK_CALC_GLR([%verbose])
680AT_CHECK_CALC_GLR([%yacc])
cf499cff 681AT_CHECK_CALC_GLR([%define parse.error verbose])
bfb07874 682
d9df47b6 683AT_CHECK_CALC_GLR([%define api.pure %locations])
cf499cff 684AT_CHECK_CALC_GLR([%define parse.error verbose %locations])
bfb07874 685
cf499cff 686AT_CHECK_CALC_GLR([%define parse.error verbose %locations %defines %name-prefix "calc" %verbose %yacc])
bfb07874 687
f50adbbd 688AT_CHECK_CALC_GLR([%debug])
cf499cff
JD
689AT_CHECK_CALC_GLR([%define parse.error verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc])
690AT_CHECK_CALC_GLR([%define parse.error verbose %debug %locations %defines %name-prefix "calc" %define api.tokens.prefix "TOK_" %verbose %yacc])
21964f43 691
cf499cff 692AT_CHECK_CALC_GLR([%define api.pure %define parse.error verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc])
2a8d363a 693
cf499cff 694AT_CHECK_CALC_GLR([%define api.pure %define parse.error verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count}])
7548fed2
AD
695
696
697# ----------------------------- #
698# Simple LALR1 C++ Calculator. #
699# ----------------------------- #
700
8f7e3cf9 701AT_BANNER([[Simple LALR(1) C++ Calculator.]])
7548fed2 702
0e021770
PE
703# First let's try using %skeleton
704AT_CHECK_CALC([%skeleton "lalr1.cc" %defines %locations])
705
7548fed2
AD
706# AT_CHECK_CALC_LALR1_CC([BISON-OPTIONS])
707# ---------------------------------------
708# Start a testing chunk which compiles `calc' grammar with
caf37a36 709# the C++ skeleton, and performs several tests over the parser.
7548fed2 710m4_define([AT_CHECK_CALC_LALR1_CC],
2ea7730c 711[AT_CHECK_CALC([%language "C++" %defines] $@)])
8f7e3cf9
AD
712
713AT_CHECK_CALC_LALR1_CC([])
2ea7730c 714AT_CHECK_CALC_LALR1_CC([%locations])
24bb8c8c 715AT_CHECK_CALC_LALR1_CC([%locations %define location_type Span])
cf499cff 716AT_CHECK_CALC_LALR1_CC([%locations %define parse.error verbose %name-prefix "calc" %verbose %yacc])
7548fed2 717
cf499cff 718AT_CHECK_CALC_LALR1_CC([%locations %define parse.error verbose %debug %name-prefix "calc" %verbose %yacc])
7548fed2 719
cf499cff
JD
720AT_CHECK_CALC_LALR1_CC([%locations %pure-parser %define parse.error verbose %debug %name-prefix "calc" %verbose %yacc])
721AT_CHECK_CALC_LALR1_CC([%locations %pure-parser %define parse.error verbose %debug %name-prefix "calc" %define api.tokens.prefix "TOK_" %verbose %yacc])
0b86fc41 722
cf499cff 723AT_CHECK_CALC_LALR1_CC([%locations %pure-parser %define parse.error verbose %debug %name-prefix "calc" %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count}])
7548fed2 724
7548fed2 725
7548fed2 726
8f7e3cf9
AD
727# --------------------------- #
728# Simple GLR C++ Calculator. #
729# --------------------------- #
730
731AT_BANNER([[Simple GLR C++ Calculator.]])
732
0e021770
PE
733# Again, we try also using %skeleton.
734AT_CHECK_CALC([%skeleton "glr.cc" %defines %locations])
735
8f7e3cf9
AD
736# AT_CHECK_CALC_GLR_CC([BISON-OPTIONS])
737# -------------------------------------
738# Start a testing chunk which compiles `calc' grammar with
739# the GLR C++ skeleton, and performs several tests over the parser.
740m4_define([AT_CHECK_CALC_GLR_CC],
0e021770 741[AT_CHECK_CALC([%language "C++" %glr-parser %defines %locations] $@)])
8f7e3cf9 742
fa7b79c0 743AT_CHECK_CALC_GLR_CC([])
bb9191dd 744AT_CHECK_CALC_GLR_CC([%define location_type Span])
cf499cff 745AT_CHECK_CALC_GLR_CC([%define parse.error verbose %name-prefix "calc" %verbose %yacc])
8f7e3cf9 746
fa7b79c0 747AT_CHECK_CALC_GLR_CC([%debug])
cf499cff 748AT_CHECK_CALC_GLR_CC([%define parse.error verbose %debug %name-prefix "calc" %verbose %yacc])
7548fed2 749
cf499cff
JD
750AT_CHECK_CALC_GLR_CC([%pure-parser %define parse.error verbose %debug %name-prefix "calc" %verbose %yacc])
751AT_CHECK_CALC_GLR_CC([%pure-parser %define parse.error verbose %debug %name-prefix "calc" %define api.tokens.prefix "TOK_" %verbose %yacc])
7548fed2 752
cf499cff 753AT_CHECK_CALC_GLR_CC([%pure-parser %define parse.error verbose %debug %name-prefix "calc" %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count}])