1 # Checking the output filenames. -*- Autotest -*-
2 # Copyright 2000, 2001 Free Software Foundation, Inc.
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2, or (at your option)
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 AT_BANNER([[Simple Calculator.]])
21 ## ---------------------------------------------------- ##
22 ## Compile the grammar described in the documentation. ##
23 ## ---------------------------------------------------- ##
26 # ------------------------- #
27 # Helping Autotest macros. #
28 # ------------------------- #
31 # _AT_DATA_CALC_Y($1, $2, $3, [CPP-DIRECTIVES])
32 # ---------------------------------------------
33 # Produce `calc.y'. Don't call this macro directly, because it contains
34 # some occurrences of `$1' etc. which will be interpreted by m4. So
35 # you should call it with $1, $2, and $3 as arguments, which is what
36 # AT_DATA_CALC_Y does.
37 m4_define([_AT_DATA_CALC_Y],
38 [m4_if([$1$2$3], $[1]$[2]$[3], [],
39 [m4_fatal([$0: Invalid arguments: $@])])dnl
41 [[/* Infix notation calculator--calc */
45 /* We don't need a perfect malloc for these tests. */
53 char *strcat(char *dest, const char *src);
57 static int power (int base, int exponent);
58 static void yyerror (const char *s);
59 static int yylex (void);
60 static int yygetc (void);
61 static void yyungetc (int c);
63 extern void perror (const char *s);
66 /* Bison Declarations */
67 %token CALC_EOF 0 "end of file"
70 %nonassoc '=' /* comparison */
73 %left NEG /* negation--unary minus */
74 %right '^' /* exponentiation */
95 printf ("calc: error: %d != %d\n", $1, $3);
98 | exp '+' exp { $$ = $1 + $3; }
99 | exp '-' exp { $$ = $1 - $3; }
100 | exp '*' exp { $$ = $1 * $3; }
101 | exp '/' exp { $$ = $1 / $3; }
102 | '-' exp %prec NEG { $$ = -$2; }
103 | exp '^' exp { $$ = power ($1, $3); }
104 | '(' exp ')' { $$ = $2; }
111 yyerror (const char *s)
114 fprintf (stderr, "%d.%d:%d.%d: ",
115 yylloc.first_line, yylloc.first_column,
116 yylloc.last_line, yylloc.last_column);
118 fprintf (stderr, "%s\n", s);
123 static YYLTYPE last_yylloc;
128 int res = getc (yyin);
130 last_yylloc = yylloc;
134 yylloc.last_column = 0;
137 yylloc.last_column++;
147 /* Wrong when C == `\n'. */
148 yylloc = last_yylloc;
154 read_signed_integer (void)
168 n = 10 * n + (c - '0');
179 /*---------------------------------------------------------------.
180 | Lexical analyzer returns an integer on the stack and the token |
181 | NUM, or the ASCII character read if not a number. Skips all |
182 | blanks and tabs, returns 0 for EOF. |
183 `---------------------------------------------------------------*/
191 yylloc.first_column = yylloc.last_column;
192 yylloc.first_line = yylloc.last_line;
195 /* Skip white space. */
196 while ((c = yygetc ()) == ' ' || c == '\t')
199 yylloc.first_column = yylloc.last_column;
200 yylloc.first_line = yylloc.last_line;
204 /* process numbers */
205 if (c == '.' || isdigit (c))
208 yylval = read_signed_integer ();
212 /* Return end-of-file. */
216 /* Return single chars. */
221 power (int base, int exponent)
226 for (/* Niente */; exponent; --exponent)
232 main (int argc, const char **argv)
237 yyin = fopen (argv[1], "r");
251 yylloc.last_column = 0;
252 yylloc.last_line = 1;
261 # AT_DATA_CALC_Y([BISON-OPTIONS])
262 # -------------------------------
264 m4_define([AT_DATA_CALC_Y],
265 [_AT_DATA_CALC_Y($[1], $[2], $[3],
266 [m4_bmatch([$1], [--yyerror-verbose],
267 [[%error-verbose]])])])
271 # _AT_CHECK_CALC(BISON-OPTIONS, INPUT, [NUM-STDERR-LINES = 0])
272 # ------------------------------------------------------------
273 # Run `calc' on INPUT and expect no STDOUT nor STDERR.
275 # If BISON-OPTIONS contains `--debug', then NUM-STDERR-LINES is the number
276 # of expected lines on stderr.
277 m4_define([_AT_CHECK_CALC],
281 AT_CHECK([calc input], 0, [], [stderr])dnl
282 AT_CHECK([wc -l <stderr | sed 's/[[^0-9]]//g'], 0,
283 [m4_bmatch([$1], [--debug],
289 # _AT_CHECK_CALC_ERROR(BISON-OPTIONS, INPUT, [NUM-DEBUG-LINES],
290 # [ERROR-LOCATION], [IF-YYERROR-VERBOSE])
291 # ------------------------------------------------------------
292 # Run `calc' on INPUT, and expect a `parse error' message.
294 # If INPUT starts with a slash, it is used as absolute input file name,
295 # otherwise as contents.
297 # If BISON-OPTIONS contains `--location', then make sure the ERROR-LOCATION
298 # is correctly output on stderr.
300 # If BISON-OPTIONS contains `--yyerror-verbose', then make sure the
301 # IF-YYERROR-VERBOSE message is properly output after `parse error, '
304 # If BISON-OPTIONS contains `--debug', then NUM-STDERR-LINES is the number
305 # of expected lines on stderr.
306 m4_define([_AT_CHECK_CALC_ERROR],
307 [m4_bmatch([$2], [^/],
308 [AT_CHECK([calc $2], 0, [], [stderr])],
312 AT_CHECK([calc input], 0, [], [stderr])])
315 AT_CHECK([wc -l <stderr | sed 's/[[^0-9]]//g'], 0,
316 [m4_bmatch([$1], [--debug],
320 egrep -v '^((Start|Enter|Read|Reduc|Shift)ing|state|Error:) ' stderr >at-stderr
323 AT_CHECK([cat stderr], 0,
324 [m4_bmatch([$1], [--location], [$4: ])[]dnl
326 m4_bmatch([$1], [--yyerror-verbose], [, $5])[]dnl
333 # AT_CHECK_CALC([BISON-OPTIONS], [PARSER-EXPECTED-STDERR])
334 # --------------------------------------------------------
335 # Start a testing chunk which compiles `calc' grammar with
336 # BISON-OPTIONS, and performs several tests over the parser.
337 m4_define([AT_CHECK_CALC],
338 [# We use integers to avoid dependencies upon the precision of doubles.
339 AT_SETUP([Calculator $1])
343 # Specify the output files to avoid problems on different file systems.
344 AT_CHECK([bison calc.y -o calc.c m4_bpatsubst([$1], [--yyerror-verbose])],
347 # Some compilers issue warnings we don't want to hear about.
348 # Maybe some day we will have proper Autoconf macros to disable these
349 # warnings, but this place is not the right one for that.
350 # So let's keep only GCC warnings, which we know are sane.
351 # Well, that's only part of the story: some assemblers issue warnings
352 # which can be totally useless, and actually polluting. It seems that
353 # the best bet be to completely ignore stderr, but to pass -Werror
355 if test "$GCC" = yes; then
356 CFLAGS="$CFLAGS -Werror"
358 AT_CHECK([$CC $CFLAGS $CPPFLAGS calc.c -o calc], 0, [], [ignore])
360 # Test the priorities.
374 (2^2)^3 = 64], [488])
377 _AT_CHECK_CALC_ERROR([$1], [0 0], [10],
379 [unexpected "number"])
380 _AT_CHECK_CALC_ERROR([$1], [1//2], [13],
382 [unexpected '/', expecting "number" or '-' or '('])
383 _AT_CHECK_CALC_ERROR([$1], [error], [4],
385 [unexpected $undefined., expecting "number" or '-' or '\n' or '('])
386 _AT_CHECK_CALC_ERROR([$1], [1 = 2 = 3], [19],
389 _AT_CHECK_CALC_ERROR([$1],
395 # Exercise error messages with EOF: work on an empty file.
396 _AT_CHECK_CALC_ERROR([$1],
400 [unexpected "end of file", expecting "number" or '-' or '\n' or '('])
408 # ------------------ #
409 # Test the parsers. #
410 # ------------------ #
414 AT_CHECK_CALC([--defines])
415 AT_CHECK_CALC([--locations])
416 AT_CHECK_CALC([--name-prefix=calc])
417 AT_CHECK_CALC([--verbose])
418 AT_CHECK_CALC([--yacc])
419 AT_CHECK_CALC([--yyerror-verbose])
421 AT_CHECK_CALC([--locations --yyerror-verbose])
423 AT_CHECK_CALC([--defines --locations --name-prefix=calc --verbose --yacc --yyerror-verbose])
425 AT_CHECK_CALC([--debug])
426 AT_CHECK_CALC([--debug --defines --locations --name-prefix=calc --verbose --yacc --yyerror-verbose])