]> git.saurik.com Git - bison.git/blob - tests/calc.at
warnings: raise warning for useless printers or destructors
[bison.git] / tests / calc.at
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.
43 m4_define([_AT_DATA_CALC_Y],
44 [m4_if([$1$2$3], $[1]$[2]$[3], [],
45 [m4_fatal([$0: Invalid arguments: $@])])dnl
46
47 m4_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
56 AT_SKEL_CC_IF([[
57 /* A C++ ]AT_NAME_PREFIX[parse that simulates the C signature. */
58 int
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
69 semantic_value global_result = 0;
70 int global_count = 0;
71
72 /* A C main function. */
73 int
74 main (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
110 m4_pushdef([AT_CALC_LEX],
111 [[#include <ctype.h>
112
113 ]AT_YYLEX_DECLARE_EXTERN[
114 static int get_char (]AT_YYLEX_FORMALS[);
115 static void unget_char (]AT_YYLEX_PRE_FORMALS[ int c);
116
117 ]AT_LOCATION_IF([
118 static YYLTYPE last_yylloc;
119 ])[
120 static int
121 get_char (]AT_YYLEX_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
138 static void
139 unget_char (]AT_YYLEX_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
149 static int
150 read_signed_integer (]AT_YYLEX_FORMALS[)
151 {
152 int c = get_char (]AT_YYLEX_ARGS[);
153 int sign = 1;
154 int n = 0;
155
156 ]AT_USE_LEX_ARGS[;
157 if (c == '-')
158 {
159 c = get_char (]AT_YYLEX_ARGS[);
160 sign = -1;
161 }
162
163 while (isdigit (c))
164 {
165 n = 10 * n + (c - '0');
166 c = get_char (]AT_YYLEX_ARGS[);
167 }
168
169 unget_char (]AT_YYLEX_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
181 ]AT_YYLEX_PROTOTYPE[
182 {
183 static int init = 1;
184 int c;
185
186 if (init)
187 {
188 init = 0;
189 ]AT_LOCATION_IF([
190 AT_LOC_LAST_COLUMN = 1;
191 AT_LOC_LAST_LINE = 1;
192 ])[
193 }
194
195 /* Skip current token, then white spaces. */
196 do
197 {
198 ]AT_LOCATION_IF(
199 [ AT_LOC_FIRST_COLUMN = AT_LOC_LAST_COLUMN;
200 AT_LOC_FIRST_LINE = AT_LOC_LAST_LINE;
201 ])[
202 }
203 while ((c = get_char (]AT_YYLEX_ARGS[)) == ' ' || c == '\t');
204
205 /* process numbers */
206 if (c == '.' || isdigit (c))
207 {
208 unget_char (]AT_YYLEX_PRE_ARGS[ c);
209 ]AT_VAL[.ival = read_signed_integer (]AT_YYLEX_ARGS[);
210 return ]AT_TOKEN_PREFIX[NUM;
211 }
212
213 /* Return end-of-file. */
214 if (c == EOF)
215 return ]AT_TOKEN_PREFIX[CALC_EOF;
216
217 /* Return single chars. */
218 return c;
219 }
220 ]])
221
222 AT_DATA_GRAMMAR([calc.y],
223 [[/* Infix notation calculator--calc */
224 ]$4
225 AT_SKEL_CC_IF(
226 [%define global_tokens_and_yystype])[
227 %code requires
228 {
229 ]AT_LOCATION_TYPE_IF([[
230 # include <iostream>
231 struct Point
232 {
233 int l;
234 int c;
235 };
236
237 struct Span
238 {
239 Point first;
240 Point last;
241 };
242
243 # define YYLLOC_DEFAULT(Current, Rhs, N) \
244 do \
245 if (N) \
246 { \
247 (Current).first = YYRHSLOC (Rhs, 1).first; \
248 (Current).last = YYRHSLOC (Rhs, N).last; \
249 } \
250 else \
251 { \
252 (Current).first = (Current).last = YYRHSLOC (Rhs, 0).last; \
253 } \
254 while (false)
255
256 ]])[
257 /* Exercise pre-prologue dependency to %union. */
258 typedef int semantic_value;
259 }
260
261 /* Exercise %union. */
262 %union
263 {
264 semantic_value ival;
265 };
266
267 %code provides
268 {
269 #include <stdio.h>
270 /* The input. */
271 extern FILE *input;
272 extern semantic_value global_result;
273 extern int global_count;]AT_SKEL_CC_IF([[
274 #ifndef YYLTYPE
275 # define YYLTYPE ]AT_NAME_PREFIX[::parser::location_type
276 #endif
277 ]])[
278 }
279
280 %code
281 {
282 #include <assert.h>
283 #include <string.h>
284 #define USE(Var)
285
286 FILE *input;
287 static int power (int base, int exponent);
288
289 ]AT_SKEL_CC_IF(,
290 [static void yyerror (AT_YYERROR_ARG_LOC_IF([YYLTYPE *llocp, ])
291 AT_PARAM_IF([semantic_value *result, int *count, ])
292 const char *s
293 );])[
294 ]AT_YYLEX_DECLARE_EXTERN[
295 }
296
297 ]AT_SKEL_CC_IF([AT_LOCATION_IF([AT_LOCATION_TYPE_IF([], [
298 /* The lalr1.cc skeleton, for backward compatibility, defines
299 a constructor for position that initializes the filename. The
300 glr.cc skeleton does not (and in fact cannot: location/position
301 are stored in a union, from which objects with constructors are
302 excluded in C++). */
303 %initial-action {
304 @$.initialize ();
305 }
306 ])])])[
307
308 /* Bison Declarations */
309 %token CALC_EOF 0 "end of input"
310 %token <ival> NUM "number"
311 %type <ival> exp
312
313 %nonassoc '=' /* comparison */
314 %left '-' '+'
315 %left '*' '/'
316 %precedence NEG /* negation--unary minus */
317 %right '^' /* exponentiation */
318
319 /* Grammar follows */
320 %%
321 input:
322 line
323 | input line { ]AT_PARAM_IF([++*count; ++global_count;])[ }
324 ;
325
326 line:
327 '\n'
328 | exp '\n' { ]AT_PARAM_IF([*result = global_result = $1], [USE ($1)])[; }
329 ;
330
331 exp:
332 NUM { $$ = $1; }
333 | exp '=' exp
334 {
335 if ($1 != $3)
336 fprintf (stderr, "calc: error: %d != %d\n", $1, $3);
337 $$ = $1;
338 }
339 | exp '+' exp { $$ = $1 + $3; }
340 | exp '-' exp { $$ = $1 - $3; }
341 | exp '*' exp { $$ = $1 * $3; }
342 | exp '/' exp { $$ = $1 / $3; }
343 | '-' exp %prec NEG { $$ = -$2; }
344 | exp '^' exp { $$ = power ($1, $3); }
345 | '(' exp ')' { $$ = $2; }
346 | '(' error ')' { $$ = 1111; yyerrok; }
347 | '!' { $$ = 0; YYERROR; }
348 | '-' error { $$ = 0; YYERROR; }
349 ;
350 %%
351
352 static int
353 power (int base, int exponent)
354 {
355 int res = 1;
356 assert (0 <= exponent);
357 for (/* Niente */; exponent; --exponent)
358 res *= base;
359 return res;
360 }
361
362 ]AT_SKEL_CC_IF(
363 [AT_LOCATION_TYPE_IF([[
364 std::ostream&
365 operator<< (std::ostream& o, const Span& s)
366 {
367 o << s.first.l << '.' << s.first.c;
368 if (s.first.l != s.last.l)
369 o << '-' << s.last.l << '.' << s.last.c - 1;
370 else if (s.first.c != s.last.c - 1)
371 o << '-' << s.last.c - 1;
372 return o;
373 }
374 ]])
375 AT_YYERROR_DEFINE],
376 [/* A C error reporting function. */
377 static void
378 yyerror (AT_YYERROR_ARG_LOC_IF([YYLTYPE *llocp, ])
379 AT_PARAM_IF([semantic_value *result, int *count, ])
380 const char *s)
381 {
382 AT_PARAM_IF([(void) result; (void) count;])
383 AT_YYERROR_SEES_LOC_IF([
384 fprintf (stderr, "%d.%d",
385 AT_LOC_FIRST_LINE, AT_LOC_FIRST_COLUMN);
386 if (AT_LOC_FIRST_LINE != AT_LOC_LAST_LINE)
387 fprintf (stderr, "-%d.%d",
388 AT_LOC_LAST_LINE, AT_LOC_LAST_COLUMN - 1);
389 else if (AT_LOC_FIRST_COLUMN != AT_LOC_LAST_COLUMN - 1)
390 fprintf (stderr, "-%d",
391 AT_LOC_LAST_COLUMN - 1);
392 fprintf (stderr, ": ");])
393 fprintf (stderr, "%s\n", s);
394 }])[
395
396 ]AT_DEFINES_IF([],
397 [AT_CALC_LEX
398 AT_CALC_MAIN])[
399 ]])
400
401 AT_DEFINES_IF([AT_DATA_SOURCE([[calc-lex.c]AT_SKEL_CC_IF([[c]])],
402 [[#include "calc.h]AT_SKEL_CC_IF([[h]])["
403
404 ]AT_CALC_LEX])
405 AT_DATA_SOURCE([[calc-main.c]AT_SKEL_CC_IF([[c]])],
406 [[#include "calc.h]AT_SKEL_CC_IF([[h]])["
407
408 ]AT_CALC_MAIN])
409 ])
410 m4_popdef([AT_CALC_MAIN])
411 m4_popdef([AT_CALC_LEX])
412 ])# _AT_DATA_CALC_Y
413
414
415 # AT_DATA_CALC_Y([BISON-OPTIONS])
416 # -------------------------------
417 # Produce `calc.y' and, if %defines was specified, `calc-lex.c' or
418 # `calc-lex.cc'.
419 m4_define([AT_DATA_CALC_Y],
420 [_AT_DATA_CALC_Y($[1], $[2], $[3], [$1])
421 ])
422
423
424
425 # _AT_CHECK_CALC(BISON-OPTIONS, INPUT, [NUM-STDERR-LINES])
426 # --------------------------------------------------------
427 # Run `calc' on INPUT and expect no STDOUT nor STDERR.
428 #
429 # If BISON-OPTIONS contains `%debug' but not `%glr-parser', then
430 #
431 # NUM-STDERR-LINES is the number of expected lines on stderr.
432 # Currently this is ignored, though, since the output format is fluctuating.
433 #
434 # We don't count GLR's traces yet, since its traces are somewhat
435 # different from LALR's.
436 m4_define([_AT_CHECK_CALC],
437 [AT_DATA([[input]],
438 [[$2
439 ]])
440 AT_PARSER_CHECK([./calc input], 0, [], [stderr])
441 ])
442
443
444 # _AT_CHECK_CALC_ERROR(BISON-OPTIONS, EXIT-STATUS, INPUT,
445 # [NUM-STDERR-LINES],
446 # [VERBOSE-AND-LOCATED-ERROR-MESSAGE])
447 # ---------------------------------------------------------
448 # Run `calc' on INPUT, and expect a `syntax error' message.
449 #
450 # If INPUT starts with a slash, it is used as absolute input file name,
451 # otherwise as contents.
452 #
453 # NUM-STDERR-LINES is the number of expected lines on stderr.
454 # Currently this is ignored, though, since the output format is fluctuating.
455 #
456 # If BISON-OPTIONS contains `%location', then make sure the ERROR-LOCATION
457 # is correctly output on stderr.
458 #
459 # If BISON-OPTIONS contains `%define parse.error verbose', then make sure the
460 # IF-YYERROR-VERBOSE message is properly output after `syntax error, '
461 # on STDERR.
462 #
463 # If BISON-OPTIONS contains `%debug' but not `%glr', then NUM-STDERR-LINES
464 # is the number of expected lines on stderr.
465 m4_define([_AT_CHECK_CALC_ERROR],
466 [m4_bmatch([$3], [^/],
467 [AT_PARSER_CHECK([./calc $3], $2, [], [stderr])],
468 [AT_DATA([[input]],
469 [[$3
470 ]])
471 AT_PARSER_CHECK([./calc input], $2, [], [stderr])])
472
473 # Normalize the observed and expected error messages, depending upon the
474 # options.
475 # 1. Remove the traces from observed.
476 sed '/^Starting/d
477 /^Entering/d
478 /^Stack/d
479 /^Reading/d
480 /^Reducing/d
481 /^Return/d
482 /^Shifting/d
483 /^state/d
484 /^Cleanup:/d
485 /^Error:/d
486 /^Next/d
487 /^Now/d
488 /^Discarding/d
489 / \$[[0-9$]]* = /d
490 /^yydestructor:/d' stderr >at-stderr
491 mv at-stderr stderr
492 # 2. Create the reference error message.
493 AT_DATA([[expout]],
494 [$5
495 ])
496 # 3. If locations are not used, remove them.
497 AT_YYERROR_SEES_LOC_IF([],
498 [[sed 's/^[-0-9.]*: //' expout >at-expout
499 mv at-expout expout]])
500 # 4. If error-verbose is not used, strip the`, unexpected....' part.
501 m4_bmatch([$1], [%define parse.error verbose], [],
502 [[sed 's/syntax error, .*$/syntax error/' expout >at-expout
503 mv at-expout expout]])
504 # 5. Check
505 AT_CHECK([cat stderr], 0, [expout])
506 ])
507
508
509 # AT_CHECK_CALC([BISON-OPTIONS])
510 # ------------------------------
511 # Start a testing chunk which compiles `calc' grammar with
512 # BISON-OPTIONS, and performs several tests over the parser.
513 m4_define([AT_CHECK_CALC],
514 [m4_ifval([$2], [m4_fatal([$0: expected a single argument])])
515
516 # We use integers to avoid dependencies upon the precision of doubles.
517 AT_SETUP([Calculator $1])
518
519 AT_BISON_OPTION_PUSHDEFS([$1])
520
521 AT_DATA_CALC_Y([$1])
522 AT_FULL_COMPILE([calc], AT_DEFINES_IF([[lex], [main]]))
523
524 # Test the priorities.
525 _AT_CHECK_CALC([$1],
526 [1 + 2 * 3 = 7
527 1 + 2 * -3 = -5
528
529 -1^2 = -1
530 (-1)^2 = 1
531
532 ---1 = -1
533
534 1 - 2 - 3 = -4
535 1 - (2 - 3) = 2
536
537 2^2^3 = 256
538 (2^2)^3 = 64],
539 [842])
540
541 # Some syntax errors.
542 _AT_CHECK_CALC_ERROR([$1], [1], [0 0], [15],
543 [1.3: syntax error, unexpected number])
544 _AT_CHECK_CALC_ERROR([$1], [1], [1//2], [20],
545 [1.3: syntax error, unexpected '/', expecting number or '-' or '(' or '!'])
546 _AT_CHECK_CALC_ERROR([$1], [1], [error], [5],
547 [1.1: syntax error, unexpected $undefined])
548 _AT_CHECK_CALC_ERROR([$1], [1], [1 = 2 = 3], [30],
549 [1.7: syntax error, unexpected '='])
550 _AT_CHECK_CALC_ERROR([$1], [1],
551 [
552 +1],
553 [20],
554 [2.1: syntax error, unexpected '+'])
555 # Exercise error messages with EOF: work on an empty file.
556 _AT_CHECK_CALC_ERROR([$1], [1], [/dev/null], [4],
557 [1.1: syntax error, unexpected end of input])
558
559 # Exercise the error token: without it, we die at the first error,
560 # hence be sure to
561 #
562 # - have several errors which exercise different shift/discardings
563 # - (): nothing to pop, nothing to discard
564 # - (1 + 1 + 1 +): a lot to pop, nothing to discard
565 # - (* * *): nothing to pop, a lot to discard
566 # - (1 + 2 * *): some to pop and discard
567 #
568 # - test the action associated to `error'
569 #
570 # - check the lookahead that triggers an error is not discarded
571 # when we enter error recovery. Below, the lookahead causing the
572 # first error is ")", which is needed to recover from the error and
573 # produce the "0" that triggers the "0 != 1" error.
574 #
575 _AT_CHECK_CALC_ERROR([$1], [0],
576 [() + (1 + 1 + 1 +) + (* * *) + (1 * 2 * *) = 1],
577 [250],
578 [1.2: syntax error, unexpected ')', expecting number or '-' or '(' or '!'
579 1.18: syntax error, unexpected ')', expecting number or '-' or '(' or '!'
580 1.23: syntax error, unexpected '*', expecting number or '-' or '(' or '!'
581 1.41: syntax error, unexpected '*', expecting number or '-' or '(' or '!'
582 calc: error: 4444 != 1])
583
584 # The same, but this time exercising explicitly triggered syntax errors.
585 # POSIX says the lookahead causing the error should not be discarded.
586 _AT_CHECK_CALC_ERROR([$1], [0], [(!) + (0 0) = 1], [102],
587 [1.10: syntax error, unexpected number
588 calc: error: 2222 != 1])
589 _AT_CHECK_CALC_ERROR([$1], [0], [(- *) + (0 0) = 1], [113],
590 [1.4: syntax error, unexpected '*', expecting number or '-' or '(' or '!'
591 1.12: syntax error, unexpected number
592 calc: error: 2222 != 1])
593
594 # Check that yyerrok works properly: second error is not reported,
595 # third and fourth are. Parse status is succesfull.
596 _AT_CHECK_CALC_ERROR([$1], [0], [(* *) + (*) + (*)], [113],
597 [1.2: syntax error, unexpected '*', expecting number or '-' or '(' or '!'
598 1.10: syntax error, unexpected '*', expecting number or '-' or '(' or '!'
599 1.16: syntax error, unexpected '*', expecting number or '-' or '(' or '!'])
600
601 AT_BISON_OPTION_POPDEFS
602
603 AT_CLEANUP
604 ])# AT_CHECK_CALC
605
606
607
608
609 # ------------------------ #
610 # Simple LALR Calculator. #
611 # ------------------------ #
612
613 AT_BANNER([[Simple LALR(1) Calculator.]])
614
615 # AT_CHECK_CALC_LALR([BISON-OPTIONS])
616 # -----------------------------------
617 # Start a testing chunk which compiles `calc' grammar with
618 # BISON-OPTIONS, and performs several tests over the parser.
619 m4_define([AT_CHECK_CALC_LALR],
620 [AT_CHECK_CALC($@)])
621
622 AT_CHECK_CALC_LALR()
623
624 AT_CHECK_CALC_LALR([%defines])
625 AT_CHECK_CALC_LALR([%locations])
626
627 AT_CHECK_CALC_LALR([%name-prefix="calc"]) dnl test deprecated `='
628 AT_CHECK_CALC_LALR([%verbose])
629 AT_CHECK_CALC_LALR([%yacc])
630 AT_CHECK_CALC_LALR([%define parse.error verbose])
631
632 AT_CHECK_CALC_LALR([%define api.pure %locations])
633 AT_CHECK_CALC_LALR([%define api.push-pull both %define api.pure %locations])
634 AT_CHECK_CALC_LALR([%define parse.error verbose %locations])
635
636 AT_CHECK_CALC_LALR([%define parse.error verbose %locations %defines %name-prefix "calc" %verbose %yacc])
637 AT_CHECK_CALC_LALR([%define parse.error verbose %locations %defines %name-prefix "calc" %define api.tokens.prefix "TOK_" %verbose %yacc])
638
639 AT_CHECK_CALC_LALR([%debug])
640 AT_CHECK_CALC_LALR([%define parse.error verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc])
641
642 AT_CHECK_CALC_LALR([%define api.pure %define parse.error verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc])
643 AT_CHECK_CALC_LALR([%define api.push-pull both %define api.pure %define parse.error verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc])
644
645 AT_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}])
646
647
648 # ----------------------- #
649 # Simple GLR Calculator. #
650 # ----------------------- #
651
652 AT_BANNER([[Simple GLR Calculator.]])
653
654 # AT_CHECK_CALC_GLR([BISON-OPTIONS])
655 # ----------------------------------
656 # Start a testing chunk which compiles `calc' grammar with
657 # BISON-OPTIONS and %glr-parser, and performs several tests over the parser.
658 m4_define([AT_CHECK_CALC_GLR],
659 [AT_CHECK_CALC([%glr-parser] $@)])
660
661
662 AT_CHECK_CALC_GLR()
663
664 AT_CHECK_CALC_GLR([%defines])
665 AT_CHECK_CALC_GLR([%locations])
666 AT_CHECK_CALC_GLR([%name-prefix "calc"])
667 AT_CHECK_CALC_GLR([%verbose])
668 AT_CHECK_CALC_GLR([%yacc])
669 AT_CHECK_CALC_GLR([%define parse.error verbose])
670
671 AT_CHECK_CALC_GLR([%define api.pure %locations])
672 AT_CHECK_CALC_GLR([%define parse.error verbose %locations])
673
674 AT_CHECK_CALC_GLR([%define parse.error verbose %locations %defines %name-prefix "calc" %verbose %yacc])
675
676 AT_CHECK_CALC_GLR([%debug])
677 AT_CHECK_CALC_GLR([%define parse.error verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc])
678 AT_CHECK_CALC_GLR([%define parse.error verbose %debug %locations %defines %name-prefix "calc" %define api.tokens.prefix "TOK_" %verbose %yacc])
679
680 AT_CHECK_CALC_GLR([%define api.pure %define parse.error verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc])
681
682 AT_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}])
683
684
685 # ----------------------------- #
686 # Simple LALR1 C++ Calculator. #
687 # ----------------------------- #
688
689 AT_BANNER([[Simple LALR(1) C++ Calculator.]])
690
691 # First let's try using %skeleton
692 AT_CHECK_CALC([%skeleton "lalr1.cc" %defines %locations])
693
694 # AT_CHECK_CALC_LALR1_CC([BISON-OPTIONS])
695 # ---------------------------------------
696 # Start a testing chunk which compiles `calc' grammar with
697 # the C++ skeleton, and performs several tests over the parser.
698 m4_define([AT_CHECK_CALC_LALR1_CC],
699 [AT_CHECK_CALC([%language "C++" %defines] $@)])
700
701 AT_CHECK_CALC_LALR1_CC([])
702 AT_CHECK_CALC_LALR1_CC([%locations])
703 AT_CHECK_CALC_LALR1_CC([%locations %define location_type Span])
704 AT_CHECK_CALC_LALR1_CC([%locations %define parse.error verbose %name-prefix "calc" %verbose %yacc])
705
706 AT_CHECK_CALC_LALR1_CC([%locations %define parse.error verbose %debug %name-prefix "calc" %verbose %yacc])
707
708 AT_CHECK_CALC_LALR1_CC([%locations %pure-parser %define parse.error verbose %debug %name-prefix "calc" %verbose %yacc])
709 AT_CHECK_CALC_LALR1_CC([%locations %pure-parser %define parse.error verbose %debug %name-prefix "calc" %define api.tokens.prefix "TOK_" %verbose %yacc])
710
711 AT_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}])
712
713
714
715 # --------------------------- #
716 # Simple GLR C++ Calculator. #
717 # --------------------------- #
718
719 AT_BANNER([[Simple GLR C++ Calculator.]])
720
721 # Again, we try also using %skeleton.
722 AT_CHECK_CALC([%skeleton "glr.cc" %defines %locations])
723
724 # AT_CHECK_CALC_GLR_CC([BISON-OPTIONS])
725 # -------------------------------------
726 # Start a testing chunk which compiles `calc' grammar with
727 # the GLR C++ skeleton, and performs several tests over the parser.
728 m4_define([AT_CHECK_CALC_GLR_CC],
729 [AT_CHECK_CALC([%language "C++" %glr-parser %defines %locations] $@)])
730
731 AT_CHECK_CALC_GLR_CC([])
732 AT_CHECK_CALC_GLR_CC([%define location_type Span])
733 AT_CHECK_CALC_GLR_CC([%define parse.error verbose %name-prefix "calc" %verbose %yacc])
734
735 AT_CHECK_CALC_GLR_CC([%debug])
736 AT_CHECK_CALC_GLR_CC([%define parse.error verbose %debug %name-prefix "calc" %verbose %yacc])
737
738 AT_CHECK_CALC_GLR_CC([%pure-parser %define parse.error verbose %debug %name-prefix "calc" %verbose %yacc])
739 AT_CHECK_CALC_GLR_CC([%pure-parser %define parse.error verbose %debug %name-prefix "calc" %define api.tokens.prefix "TOK_" %verbose %yacc])
740
741 AT_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}])