]>
Commit | Line | Data |
---|---|---|
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 |
43 | m4_define([_AT_DATA_CALC_Y], |
44 | [m4_if([$1$2$3], $[1]$[2]$[3], [], | |
45 | [m4_fatal([$0: Invalid arguments: $@])])dnl | |
c8c220d1 AD |
46 | |
47 | m4_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 | ||
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 | ||
462503f8 JD |
110 | m4_pushdef([AT_CALC_LEX], |
111 | [[#include <ctype.h> | |
112 | ||
113 | int ]AT_NAME_PREFIX[lex (]AT_LEX_FORMALS[); | |
114 | static int get_char (]AT_LEX_FORMALS[); | |
115 | static void unget_char (]AT_LEX_PRE_FORMALS[ int c); | |
116 | ||
117 | ]AT_LOCATION_IF([ | |
118 | static YYLTYPE last_yylloc; | |
119 | ])[ | |
120 | static int | |
121 | get_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 | ||
138 | static void | |
139 | unget_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 | ||
149 | static int | |
150 | read_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 | ||
181 | int | |
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 | 223 | AT_DATA_GRAMMAR([calc.y], |
bfb07874 | 224 | [[/* Infix notation calculator--calc */ |
fb9712a9 | 225 | ]$4 |
8f7e3cf9 | 226 | AT_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 |
272 | extern FILE *input; |
273 | extern semantic_value global_result; | |
274 | extern 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 | 287 | FILE *input; |
c19988b7 | 288 | static 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 | 294 | static 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 |
298 | int 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 | %% | |
325 | input: | |
b7c49edf | 326 | line |
2a8d363a | 327 | | input line { ]AT_PARAM_IF([++*count; ++global_count;])[ } |
bfb07874 AD |
328 | ; |
329 | ||
330 | line: | |
c19988b7 | 331 | '\n' |
affac613 | 332 | | exp '\n' { ]AT_PARAM_IF([*result = global_result = $1], [USE ($1)])[; } |
bfb07874 AD |
333 | ; |
334 | ||
335 | exp: | |
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 |
356 | static int |
357 | power (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 | ]]) | |
379 | ||
380 | /* A C++ error reporting function. */ | |
7548fed2 | 381 | void |
16d9244d | 382 | AT_NAME_PREFIX::parser::error (const location_type& l, const std::string& m) |
7548fed2 | 383 | { |
efeed023 AD |
384 | (void) l; |
385 | std::cerr << AT_LOCATION_IF([l << ": " << ])m << std::endl; | |
7548fed2 | 386 | } |
7548fed2 | 387 | ], |
3e4a253b AD |
388 | [/* A C error reporting function. */ |
389 | static void | |
ebc3737e | 390 | yyerror (AT_YYERROR_ARG_LOC_IF([YYLTYPE *llocp, ]) |
caf37a36 | 391 | AT_PARAM_IF([semantic_value *result, int *count, ]) |
7548fed2 AD |
392 | const char *s) |
393 | { | |
394 | AT_PARAM_IF([(void) result; (void) count;]) | |
395 | AT_YYERROR_SEES_LOC_IF([ | |
396 | fprintf (stderr, "%d.%d", | |
ed228e60 AD |
397 | AT_LOC_FIRST_LINE, AT_LOC_FIRST_COLUMN); |
398 | if (AT_LOC_FIRST_LINE != AT_LOC_LAST_LINE) | |
7548fed2 | 399 | fprintf (stderr, "-%d.%d", |
3d8082ad | 400 | AT_LOC_LAST_LINE, AT_LOC_LAST_COLUMN - 1); |
ed228e60 | 401 | else if (AT_LOC_FIRST_COLUMN != AT_LOC_LAST_COLUMN - 1) |
7548fed2 | 402 | fprintf (stderr, "-%d", |
3d8082ad | 403 | AT_LOC_LAST_COLUMN - 1); |
7548fed2 AD |
404 | fprintf (stderr, ": ");]) |
405 | fprintf (stderr, "%s\n", s); | |
406 | }])[ | |
407 | ||
c8c220d1 AD |
408 | ]AT_DEFINES_IF([], |
409 | [AT_CALC_LEX | |
410 | AT_CALC_MAIN])[ | |
bfb07874 | 411 | ]]) |
c8c220d1 | 412 | |
462503f8 JD |
413 | AT_DEFINES_IF([AT_DATA_SOURCE([[calc-lex.c]AT_SKEL_CC_IF([[c]])], |
414 | [[#include "calc.h]AT_SKEL_CC_IF([[h]])[" | |
415 | ||
c8c220d1 AD |
416 | ]AT_CALC_LEX]) |
417 | AT_DATA_SOURCE([[calc-main.c]AT_SKEL_CC_IF([[c]])], | |
418 | [[#include "calc.h]AT_SKEL_CC_IF([[h]])[" | |
419 | ||
420 | ]AT_CALC_MAIN]) | |
421 | ]) | |
422 | m4_popdef([AT_CALC_MAIN]) | |
462503f8 | 423 | m4_popdef([AT_CALC_LEX]) |
bfb07874 AD |
424 | ])# _AT_DATA_CALC_Y |
425 | ||
426 | ||
427 | # AT_DATA_CALC_Y([BISON-OPTIONS]) | |
428 | # ------------------------------- | |
462503f8 JD |
429 | # Produce `calc.y' and, if %defines was specified, `calc-lex.c' or |
430 | # `calc-lex.cc'. | |
342b8b6e | 431 | m4_define([AT_DATA_CALC_Y], |
9e32add8 | 432 | [_AT_DATA_CALC_Y($[1], $[2], $[3], [$1]) |
f50adbbd | 433 | ]) |
bfb07874 AD |
434 | |
435 | ||
436 | ||
d9963c85 PE |
437 | # _AT_CHECK_CALC(BISON-OPTIONS, INPUT, [NUM-STDERR-LINES]) |
438 | # -------------------------------------------------------- | |
bfb07874 | 439 | # Run `calc' on INPUT and expect no STDOUT nor STDERR. |
342b8b6e | 440 | # |
f50adbbd | 441 | # If BISON-OPTIONS contains `%debug' but not `%glr-parser', then |
d9963c85 | 442 | # |
f50adbbd | 443 | # NUM-STDERR-LINES is the number of expected lines on stderr. |
d9963c85 | 444 | # Currently this is ignored, though, since the output format is fluctuating. |
f50adbbd AD |
445 | # |
446 | # We don't count GLR's traces yet, since its traces are somewhat | |
447 | # different from LALR's. | |
342b8b6e AD |
448 | m4_define([_AT_CHECK_CALC], |
449 | [AT_DATA([[input]], | |
450 | [[$2 | |
451 | ]]) | |
f50adbbd | 452 | AT_PARSER_CHECK([./calc input], 0, [], [stderr]) |
342b8b6e AD |
453 | ]) |
454 | ||
455 | ||
b0f98b10 | 456 | # _AT_CHECK_CALC_ERROR(BISON-OPTIONS, EXIT-STATUS, INPUT, |
d9963c85 | 457 | # [NUM-STDERR-LINES], |
2a8d363a | 458 | # [VERBOSE-AND-LOCATED-ERROR-MESSAGE]) |
b0f98b10 | 459 | # --------------------------------------------------------- |
6e649e65 | 460 | # Run `calc' on INPUT, and expect a `syntax error' message. |
342b8b6e | 461 | # |
b7c49edf AD |
462 | # If INPUT starts with a slash, it is used as absolute input file name, |
463 | # otherwise as contents. | |
464 | # | |
d9963c85 PE |
465 | # NUM-STDERR-LINES is the number of expected lines on stderr. |
466 | # Currently this is ignored, though, since the output format is fluctuating. | |
467 | # | |
9e32add8 | 468 | # If BISON-OPTIONS contains `%location', then make sure the ERROR-LOCATION |
342b8b6e AD |
469 | # is correctly output on stderr. |
470 | # | |
f50adbbd | 471 | # If BISON-OPTIONS contains `%error-verbose', then make sure the |
6e649e65 | 472 | # IF-YYERROR-VERBOSE message is properly output after `syntax error, ' |
342b8b6e AD |
473 | # on STDERR. |
474 | # | |
f50adbbd AD |
475 | # If BISON-OPTIONS contains `%debug' but not `%glr', then NUM-STDERR-LINES |
476 | # is the number of expected lines on stderr. | |
342b8b6e | 477 | m4_define([_AT_CHECK_CALC_ERROR], |
b0f98b10 AD |
478 | [m4_bmatch([$3], [^/], |
479 | [AT_PARSER_CHECK([./calc $3], $2, [], [stderr])], | |
b7c49edf | 480 | [AT_DATA([[input]], |
b0f98b10 | 481 | [[$3 |
342b8b6e | 482 | ]]) |
b0f98b10 | 483 | AT_PARSER_CHECK([./calc input], $2, [], [stderr])]) |
342b8b6e | 484 | |
51dec47b AD |
485 | # Normalize the observed and expected error messages, depending upon the |
486 | # options. | |
487 | # 1. Remove the traces from observed. | |
9280d3ef AD |
488 | sed '/^Starting/d |
489 | /^Entering/d | |
f50adbbd | 490 | /^Stack/d |
9280d3ef AD |
491 | /^Reading/d |
492 | /^Reducing/d | |
31c10e38 | 493 | /^Return/d |
9280d3ef AD |
494 | /^Shifting/d |
495 | /^state/d | |
dd5f2af2 | 496 | /^Cleanup:/d |
9280d3ef AD |
497 | /^Error:/d |
498 | /^Next/d | |
31c10e38 | 499 | /^Now/d |
9280d3ef | 500 | /^Discarding/d |
62b08cfc | 501 | / \$[[0-9$]]* = /d |
9280d3ef | 502 | /^yydestructor:/d' stderr >at-stderr |
342b8b6e | 503 | mv at-stderr stderr |
51dec47b AD |
504 | # 2. Create the reference error message. |
505 | AT_DATA([[expout]], | |
b0f98b10 | 506 | [$5 |
342b8b6e | 507 | ]) |
51dec47b | 508 | # 3. If locations are not used, remove them. |
2a8d363a | 509 | AT_YYERROR_SEES_LOC_IF([], |
51dec47b AD |
510 | [[sed 's/^[-0-9.]*: //' expout >at-expout |
511 | mv at-expout expout]]) | |
512 | # 4. If error-verbose is not used, strip the`, unexpected....' part. | |
f50adbbd | 513 | m4_bmatch([$1], [%error-verbose], [], |
6e649e65 | 514 | [[sed 's/syntax error, .*$/syntax error/' expout >at-expout |
51dec47b AD |
515 | mv at-expout expout]]) |
516 | # 5. Check | |
517 | AT_CHECK([cat stderr], 0, [expout]) | |
342b8b6e | 518 | ]) |
bfb07874 AD |
519 | |
520 | ||
fb9712a9 AD |
521 | # AT_CHECK_CALC([BISON-OPTIONS, [EXPECTED-TO-FAIL]]) |
522 | # -------------------------------------------------- | |
bfb07874 AD |
523 | # Start a testing chunk which compiles `calc' grammar with |
524 | # BISON-OPTIONS, and performs several tests over the parser. | |
907e3bc8 | 525 | # However, if EXPECTED-TO-FAIL is nonempty, this test is expected to fail. |
342b8b6e | 526 | m4_define([AT_CHECK_CALC], |
bfb07874 AD |
527 | [# We use integers to avoid dependencies upon the precision of doubles. |
528 | AT_SETUP([Calculator $1]) | |
529 | ||
907e3bc8 PE |
530 | m4_ifval([$2], [AT_CHECK([exit 77])]) |
531 | ||
67a25fed | 532 | AT_BISON_OPTION_PUSHDEFS([$1]) |
2a8d363a | 533 | |
bfb07874 | 534 | AT_DATA_CALC_Y([$1]) |
c8c220d1 | 535 | AT_FULL_COMPILE([calc], AT_DEFINES_IF([[lex], [main]])) |
bfb07874 AD |
536 | |
537 | # Test the priorities. | |
538 | _AT_CHECK_CALC([$1], | |
539 | [1 + 2 * 3 = 7 | |
540 | 1 + 2 * -3 = -5 | |
541 | ||
542 | -1^2 = -1 | |
543 | (-1)^2 = 1 | |
544 | ||
545 | ---1 = -1 | |
546 | ||
547 | 1 - 2 - 3 = -4 | |
548 | 1 - (2 - 3) = 2 | |
549 | ||
550 | 2^2^3 = 256 | |
e7cb57c0 | 551 | (2^2)^3 = 64], |
d1ff7a7c | 552 | [842]) |
bfb07874 | 553 | |
6e649e65 | 554 | # Some syntax errors. |
d1ff7a7c | 555 | _AT_CHECK_CALC_ERROR([$1], [1], [0 0], [15], |
cd48d21d | 556 | [1.3: syntax error, unexpected number]) |
d1ff7a7c | 557 | _AT_CHECK_CALC_ERROR([$1], [1], [1//2], [20], |
cd48d21d | 558 | [1.3: syntax error, unexpected '/', expecting number or '-' or '(' or '!']) |
e757bb10 | 559 | _AT_CHECK_CALC_ERROR([$1], [1], [error], [5], |
cd48d21d | 560 | [1.1: syntax error, unexpected $undefined]) |
d1ff7a7c | 561 | _AT_CHECK_CALC_ERROR([$1], [1], [1 = 2 = 3], [30], |
cd48d21d | 562 | [1.7: syntax error, unexpected '=']) |
b0f98b10 | 563 | _AT_CHECK_CALC_ERROR([$1], [1], |
bfb07874 AD |
564 | [ |
565 | +1], | |
d1ff7a7c | 566 | [20], |
cd48d21d | 567 | [2.1: syntax error, unexpected '+']) |
b7c49edf | 568 | # Exercise error messages with EOF: work on an empty file. |
cea1469d | 569 | _AT_CHECK_CALC_ERROR([$1], [1], [/dev/null], [4], |
cd48d21d | 570 | [1.1: syntax error, unexpected end of input]) |
51dec47b AD |
571 | |
572 | # Exercise the error token: without it, we die at the first error, | |
0b86fc41 AD |
573 | # hence be sure to |
574 | # | |
575 | # - have several errors which exercise different shift/discardings | |
576 | # - (): nothing to pop, nothing to discard | |
577 | # - (1 + 1 + 1 +): a lot to pop, nothing to discard | |
578 | # - (* * *): nothing to pop, a lot to discard | |
579 | # - (1 + 2 * *): some to pop and discard | |
580 | # | |
581 | # - test the action associated to `error' | |
582 | # | |
742e4900 JD |
583 | # - check the lookahead that triggers an error is not discarded |
584 | # when we enter error recovery. Below, the lookahead causing the | |
0b86fc41 AD |
585 | # first error is ")", which is needed to recover from the error and |
586 | # produce the "0" that triggers the "0 != 1" error. | |
587 | # | |
588 | _AT_CHECK_CALC_ERROR([$1], [0], | |
589 | [() + (1 + 1 + 1 +) + (* * *) + (1 * 2 * *) = 1], | |
d1ff7a7c | 590 | [250], |
cd48d21d AD |
591 | [1.2: syntax error, unexpected ')', expecting number or '-' or '(' or '!' |
592 | 1.18: syntax error, unexpected ')', expecting number or '-' or '(' or '!' | |
593 | 1.23: syntax error, unexpected '*', expecting number or '-' or '(' or '!' | |
594 | 1.41: syntax error, unexpected '*', expecting number or '-' or '(' or '!' | |
0b86fc41 AD |
595 | calc: error: 4444 != 1]) |
596 | ||
597 | # The same, but this time exercising explicitly triggered syntax errors. | |
742e4900 | 598 | # POSIX says the lookahead causing the error should not be discarded. |
d1ff7a7c | 599 | _AT_CHECK_CALC_ERROR([$1], [0], [(!) + (0 0) = 1], [102], |
cd48d21d | 600 | [1.10: syntax error, unexpected number |
0b86fc41 | 601 | calc: error: 2222 != 1]) |
d1ff7a7c | 602 | _AT_CHECK_CALC_ERROR([$1], [0], [(- *) + (0 0) = 1], [113], |
cd48d21d AD |
603 | [1.4: syntax error, unexpected '*', expecting number or '-' or '(' or '!' |
604 | 1.12: syntax error, unexpected number | |
82c53be4 | 605 | calc: error: 2222 != 1]) |
65015668 AD |
606 | |
607 | # Check that yyerrok works properly: second error is not reported, | |
608 | # third and fourth are. Parse status is succesfull. | |
609 | _AT_CHECK_CALC_ERROR([$1], [0], [(* *) + (*) + (*)], [113], | |
610 | [1.2: syntax error, unexpected '*', expecting number or '-' or '(' or '!' | |
611 | 1.10: syntax error, unexpected '*', expecting number or '-' or '(' or '!' | |
612 | 1.16: syntax error, unexpected '*', expecting number or '-' or '(' or '!']) | |
613 | ||
67a25fed | 614 | AT_BISON_OPTION_POPDEFS |
2a8d363a | 615 | |
d803322e | 616 | AT_CLEANUP |
bfb07874 AD |
617 | ])# AT_CHECK_CALC |
618 | ||
619 | ||
620 | ||
621 | ||
f50adbbd AD |
622 | # ------------------------ # |
623 | # Simple LALR Calculator. # | |
624 | # ------------------------ # | |
625 | ||
8f7e3cf9 | 626 | AT_BANNER([[Simple LALR(1) Calculator.]]) |
f50adbbd AD |
627 | |
628 | # AT_CHECK_CALC_LALR([BISON-OPTIONS]) | |
629 | # ----------------------------------- | |
630 | # Start a testing chunk which compiles `calc' grammar with | |
631 | # BISON-OPTIONS, and performs several tests over the parser. | |
632 | m4_define([AT_CHECK_CALC_LALR], | |
633 | [AT_CHECK_CALC($@)]) | |
634 | ||
635 | AT_CHECK_CALC_LALR() | |
636 | ||
9e32add8 | 637 | AT_CHECK_CALC_LALR([%defines]) |
ae7453f2 | 638 | AT_CHECK_CALC_LALR([%locations]) |
cacfdef7 | 639 | |
02975b9a | 640 | AT_CHECK_CALC_LALR([%name-prefix="calc"]) dnl test deprecated `=' |
9e32add8 AD |
641 | AT_CHECK_CALC_LALR([%verbose]) |
642 | AT_CHECK_CALC_LALR([%yacc]) | |
f50adbbd AD |
643 | AT_CHECK_CALC_LALR([%error-verbose]) |
644 | ||
d9df47b6 | 645 | AT_CHECK_CALC_LALR([%define api.pure %locations]) |
f37495f6 | 646 | AT_CHECK_CALC_LALR([%define api.push-pull both %define api.pure %locations]) |
ae7453f2 | 647 | AT_CHECK_CALC_LALR([%error-verbose %locations]) |
f50adbbd | 648 | |
02975b9a | 649 | AT_CHECK_CALC_LALR([%error-verbose %locations %defines %name-prefix "calc" %verbose %yacc]) |
f50adbbd AD |
650 | |
651 | AT_CHECK_CALC_LALR([%debug]) | |
02975b9a | 652 | AT_CHECK_CALC_LALR([%error-verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc]) |
c19988b7 | 653 | |
d9df47b6 | 654 | AT_CHECK_CALC_LALR([%define api.pure %error-verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc]) |
f37495f6 | 655 | AT_CHECK_CALC_LALR([%define api.push-pull both %define api.pure %error-verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc]) |
2a8d363a | 656 | |
d9df47b6 | 657 | AT_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 |
658 | |
659 | ||
660 | # ----------------------- # | |
661 | # Simple GLR Calculator. # | |
662 | # ----------------------- # | |
663 | ||
664 | AT_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. | |
670 | m4_define([AT_CHECK_CALC_GLR], | |
ae7453f2 | 671 | [AT_CHECK_CALC([%glr-parser] $@)]) |
f50adbbd | 672 | |
bfb07874 | 673 | |
f50adbbd | 674 | AT_CHECK_CALC_GLR() |
bfb07874 | 675 | |
9e32add8 | 676 | AT_CHECK_CALC_GLR([%defines]) |
ae7453f2 | 677 | AT_CHECK_CALC_GLR([%locations]) |
02975b9a | 678 | AT_CHECK_CALC_GLR([%name-prefix "calc"]) |
9e32add8 AD |
679 | AT_CHECK_CALC_GLR([%verbose]) |
680 | AT_CHECK_CALC_GLR([%yacc]) | |
f50adbbd | 681 | AT_CHECK_CALC_GLR([%error-verbose]) |
bfb07874 | 682 | |
d9df47b6 | 683 | AT_CHECK_CALC_GLR([%define api.pure %locations]) |
ae7453f2 | 684 | AT_CHECK_CALC_GLR([%error-verbose %locations]) |
bfb07874 | 685 | |
02975b9a | 686 | AT_CHECK_CALC_GLR([%error-verbose %locations %defines %name-prefix "calc" %verbose %yacc]) |
bfb07874 | 687 | |
f50adbbd | 688 | AT_CHECK_CALC_GLR([%debug]) |
02975b9a | 689 | AT_CHECK_CALC_GLR([%error-verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc]) |
21964f43 | 690 | |
d9df47b6 | 691 | AT_CHECK_CALC_GLR([%define api.pure %error-verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc]) |
2a8d363a | 692 | |
d9df47b6 | 693 | AT_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 |
694 | |
695 | ||
696 | # ----------------------------- # | |
697 | # Simple LALR1 C++ Calculator. # | |
698 | # ----------------------------- # | |
699 | ||
8f7e3cf9 | 700 | AT_BANNER([[Simple LALR(1) C++ Calculator.]]) |
7548fed2 | 701 | |
0e021770 PE |
702 | # First let's try using %skeleton |
703 | AT_CHECK_CALC([%skeleton "lalr1.cc" %defines %locations]) | |
704 | ||
7548fed2 AD |
705 | # AT_CHECK_CALC_LALR1_CC([BISON-OPTIONS]) |
706 | # --------------------------------------- | |
707 | # Start a testing chunk which compiles `calc' grammar with | |
caf37a36 | 708 | # the C++ skeleton, and performs several tests over the parser. |
7548fed2 | 709 | m4_define([AT_CHECK_CALC_LALR1_CC], |
0e021770 | 710 | [AT_CHECK_CALC([%language "C++" %defines %locations] $@)]) |
8f7e3cf9 AD |
711 | |
712 | AT_CHECK_CALC_LALR1_CC([]) | |
cacfdef7 | 713 | AT_CHECK_CALC_LALR1_CC([%define location_type Span]) |
02975b9a | 714 | AT_CHECK_CALC_LALR1_CC([%error-verbose %name-prefix "calc" %verbose %yacc]) |
02975b9a | 715 | AT_CHECK_CALC_LALR1_CC([%error-verbose %debug %name-prefix "calc" %verbose %yacc]) |
7548fed2 | 716 | |
02975b9a | 717 | AT_CHECK_CALC_LALR1_CC([%pure-parser %error-verbose %debug %name-prefix "calc" %verbose %yacc]) |
0b86fc41 | 718 | |
02975b9a | 719 | AT_CHECK_CALC_LALR1_CC([%pure-parser %error-verbose %debug %name-prefix "calc" %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count}]) |
7548fed2 | 720 | |
7548fed2 | 721 | |
7548fed2 | 722 | |
8f7e3cf9 AD |
723 | # --------------------------- # |
724 | # Simple GLR C++ Calculator. # | |
725 | # --------------------------- # | |
726 | ||
727 | AT_BANNER([[Simple GLR C++ Calculator.]]) | |
728 | ||
0e021770 PE |
729 | # Again, we try also using %skeleton. |
730 | AT_CHECK_CALC([%skeleton "glr.cc" %defines %locations]) | |
731 | ||
8f7e3cf9 AD |
732 | # AT_CHECK_CALC_GLR_CC([BISON-OPTIONS]) |
733 | # ------------------------------------- | |
734 | # Start a testing chunk which compiles `calc' grammar with | |
735 | # the GLR C++ skeleton, and performs several tests over the parser. | |
736 | m4_define([AT_CHECK_CALC_GLR_CC], | |
0e021770 | 737 | [AT_CHECK_CALC([%language "C++" %glr-parser %defines %locations] $@)]) |
8f7e3cf9 | 738 | |
fa7b79c0 | 739 | AT_CHECK_CALC_GLR_CC([]) |
e7bab2df | 740 | AT_CHECK_CALC_GLR_CC([%define location_type Span]) |
02975b9a | 741 | AT_CHECK_CALC_GLR_CC([%error-verbose %name-prefix "calc" %verbose %yacc]) |
8f7e3cf9 | 742 | |
fa7b79c0 | 743 | AT_CHECK_CALC_GLR_CC([%debug]) |
02975b9a | 744 | AT_CHECK_CALC_GLR_CC([%error-verbose %debug %name-prefix "calc" %verbose %yacc]) |
7548fed2 | 745 | |
02975b9a | 746 | AT_CHECK_CALC_GLR_CC([%pure-parser %error-verbose %debug %name-prefix "calc" %verbose %yacc]) |
7548fed2 | 747 | |
02975b9a | 748 | AT_CHECK_CALC_GLR_CC([%pure-parser %error-verbose %debug %name-prefix "calc" %verbose %yacc %parse-param {semantic_value *result} %parse-param {int *count}]) |