]>
Commit | Line | Data |
---|---|---|
342b8b6e AD |
1 | # Checking the output filenames. -*- Autotest -*- |
2 | # Copyright 2000, 2001 Free Software Foundation, Inc. | |
bfb07874 | 3 | |
342b8b6e AD |
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) | |
7 | # any later version. | |
bfb07874 | 8 | |
342b8b6e AD |
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. | |
bfb07874 | 13 | |
342b8b6e AD |
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 | |
17 | # 02111-1307, USA. | |
bfb07874 | 18 | |
342b8b6e | 19 | AT_BANNER([[Simple Calculator.]]) |
bfb07874 AD |
20 | |
21 | ## ---------------------------------------------------- ## | |
22 | ## Compile the grammar described in the documentation. ## | |
23 | ## ---------------------------------------------------- ## | |
24 | ||
25 | ||
26 | # ------------------------- # | |
27 | # Helping Autotest macros. # | |
28 | # ------------------------- # | |
29 | ||
30 | ||
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. | |
342b8b6e AD |
37 | m4_define([_AT_DATA_CALC_Y], |
38 | [m4_if([$1$2$3], $[1]$[2]$[3], [], | |
39 | [m4_fatal([$0: Invalid arguments: $@])])dnl | |
bfb07874 AD |
40 | AT_DATA([calc.y], |
41 | [[/* Infix notation calculator--calc */ | |
42 | ||
43 | %{ | |
2ce10144 | 44 | #include <config.h> |
342b8b6e AD |
45 | /* We don't need a perfect malloc for these tests. */ |
46 | #undef malloc | |
bfb07874 | 47 | #include <stdio.h> |
2ce10144 AD |
48 | |
49 | #if STDC_HEADERS | |
50 | # include <stdlib.h> | |
51 | # include <string.h> | |
52 | #else | |
53 | char *strcat(char *dest, const char *src); | |
54 | #endif | |
bfb07874 | 55 | #include <ctype.h> |
bfb07874 AD |
56 | |
57 | static int power (int base, int exponent); | |
58 | static void yyerror (const char *s); | |
59 | static int yylex (void); | |
2ce10144 AD |
60 | static int yygetc (void); |
61 | static void yyungetc (int c); | |
62 | ||
bfb07874 AD |
63 | extern void perror (const char *s); |
64 | %} | |
65 | ||
213e640e AD |
66 | /* Also exercise %union. */ |
67 | %union | |
68 | { | |
69 | int ival; /* A comment to exercise an old bug. */ | |
70 | }; | |
71 | ||
6b7e85b9 | 72 | /* Bison Declarations */ |
b7c49edf | 73 | %token CALC_EOF 0 "end of file" |
213e640e AD |
74 | %token <ival> NUM "number" |
75 | %type <ival> exp | |
bfb07874 AD |
76 | |
77 | %nonassoc '=' /* comparison */ | |
78 | %left '-' '+' | |
79 | %left '*' '/' | |
80 | %left NEG /* negation--unary minus */ | |
81 | %right '^' /* exponentiation */ | |
82 | ||
147e184c MA |
83 | ]$4[ |
84 | ||
bfb07874 AD |
85 | /* Grammar follows */ |
86 | %% | |
87 | input: | |
b7c49edf | 88 | line |
bfb07874 AD |
89 | | input line |
90 | ; | |
91 | ||
92 | line: | |
93 | '\n' | |
213e640e | 94 | | exp '\n' {} |
bfb07874 AD |
95 | ; |
96 | ||
97 | exp: | |
98 | NUM { $$ = $1; } | |
99 | | exp '=' exp | |
100 | { | |
101 | if ($1 != $3) | |
102 | printf ("calc: error: %d != %d\n", $1, $3); | |
103 | $$ = $1 == $3; | |
104 | } | |
105 | | exp '+' exp { $$ = $1 + $3; } | |
106 | | exp '-' exp { $$ = $1 - $3; } | |
107 | | exp '*' exp { $$ = $1 * $3; } | |
108 | | exp '/' exp { $$ = $1 / $3; } | |
109 | | '-' exp %prec NEG { $$ = -$2; } | |
110 | | exp '^' exp { $$ = power ($1, $3); } | |
111 | | '(' exp ')' { $$ = $2; } | |
112 | ; | |
113 | %% | |
114 | /* The input. */ | |
115 | FILE *yyin; | |
116 | ||
117 | static void | |
118 | yyerror (const char *s) | |
119 | { | |
19c50364 | 120 | #if YYLSP_NEEDED |
bfb07874 AD |
121 | fprintf (stderr, "%d.%d:%d.%d: ", |
122 | yylloc.first_line, yylloc.first_column, | |
123 | yylloc.last_line, yylloc.last_column); | |
124 | #endif | |
125 | fprintf (stderr, "%s\n", s); | |
126 | } | |
127 | ||
b7c49edf AD |
128 | |
129 | #if YYLSP_NEEDED | |
130 | static YYLTYPE last_yylloc; | |
131 | #endif | |
bfb07874 | 132 | static int |
2ce10144 | 133 | yygetc (void) |
bfb07874 AD |
134 | { |
135 | int res = getc (yyin); | |
19c50364 | 136 | #if YYLSP_NEEDED |
b7c49edf | 137 | last_yylloc = yylloc; |
bfb07874 AD |
138 | if (res == '\n') |
139 | { | |
140 | yylloc.last_line++; | |
141 | yylloc.last_column = 0; | |
142 | } | |
143 | else | |
144 | yylloc.last_column++; | |
145 | #endif | |
146 | return res; | |
147 | } | |
148 | ||
149 | ||
150 | static void | |
151 | yyungetc (int c) | |
152 | { | |
19c50364 | 153 | #if YYLSP_NEEDED |
bfb07874 | 154 | /* Wrong when C == `\n'. */ |
b7c49edf | 155 | yylloc = last_yylloc; |
bfb07874 AD |
156 | #endif |
157 | ungetc (c, yyin); | |
158 | } | |
159 | ||
160 | static int | |
161 | read_signed_integer (void) | |
162 | { | |
163 | int c = yygetc (); | |
164 | int sign = 1; | |
165 | int n = 0; | |
166 | ||
167 | if (c == '-') | |
168 | { | |
169 | c = yygetc (); | |
170 | sign = -1; | |
171 | } | |
172 | ||
173 | while (isdigit (c)) | |
174 | { | |
175 | n = 10 * n + (c - '0'); | |
176 | c = yygetc (); | |
177 | } | |
178 | ||
179 | yyungetc (c); | |
180 | ||
181 | return sign * n; | |
182 | } | |
183 | ||
184 | ||
185 | ||
186 | /*---------------------------------------------------------------. | |
187 | | Lexical analyzer returns an integer on the stack and the token | | |
188 | | NUM, or the ASCII character read if not a number. Skips all | | |
189 | | blanks and tabs, returns 0 for EOF. | | |
190 | `---------------------------------------------------------------*/ | |
191 | ||
192 | static int | |
193 | yylex (void) | |
194 | { | |
195 | int c; | |
196 | ||
19c50364 | 197 | #if YYLSP_NEEDED |
bfb07874 AD |
198 | yylloc.first_column = yylloc.last_column; |
199 | yylloc.first_line = yylloc.last_line; | |
200 | #endif | |
201 | ||
202 | /* Skip white space. */ | |
203 | while ((c = yygetc ()) == ' ' || c == '\t') | |
204 | { | |
19c50364 | 205 | #if YYLSP_NEEDED |
bfb07874 AD |
206 | yylloc.first_column = yylloc.last_column; |
207 | yylloc.first_line = yylloc.last_line; | |
208 | #endif | |
209 | } | |
210 | ||
211 | /* process numbers */ | |
212 | if (c == '.' || isdigit (c)) | |
213 | { | |
214 | yyungetc (c); | |
213e640e | 215 | yylval.ival = read_signed_integer (); |
bfb07874 AD |
216 | return NUM; |
217 | } | |
218 | ||
219 | /* Return end-of-file. */ | |
220 | if (c == EOF) | |
6b7e85b9 | 221 | return CALC_EOF; |
bfb07874 AD |
222 | |
223 | /* Return single chars. */ | |
224 | return c; | |
225 | } | |
226 | ||
227 | static int | |
228 | power (int base, int exponent) | |
229 | { | |
230 | int res = 1; | |
231 | if (exponent < 0) | |
232 | exit (1); | |
233 | for (/* Niente */; exponent; --exponent) | |
234 | res *= base; | |
235 | return res; | |
236 | } | |
237 | ||
238 | int | |
342b8b6e | 239 | main (int argc, const char **argv) |
bfb07874 | 240 | { |
342b8b6e AD |
241 | yyin = NULL; |
242 | ||
243 | if (argc == 2) | |
bfb07874 AD |
244 | yyin = fopen (argv[1], "r"); |
245 | else | |
246 | yyin = stdin; | |
247 | ||
342b8b6e | 248 | if (!yyin) |
bfb07874 AD |
249 | { |
250 | perror (argv[1]); | |
251 | exit (1); | |
252 | } | |
253 | ||
254 | #if YYDEBUG | |
255 | yydebug = 1; | |
256 | #endif | |
19c50364 | 257 | #if YYLSP_NEEDED |
bfb07874 AD |
258 | yylloc.last_column = 0; |
259 | yylloc.last_line = 1; | |
260 | #endif | |
261 | yyparse (); | |
262 | return 0; | |
263 | } | |
264 | ]]) | |
265 | ])# _AT_DATA_CALC_Y | |
266 | ||
267 | ||
268 | # AT_DATA_CALC_Y([BISON-OPTIONS]) | |
269 | # ------------------------------- | |
270 | # Produce `calc.y'. | |
342b8b6e | 271 | m4_define([AT_DATA_CALC_Y], |
bfb07874 | 272 | [_AT_DATA_CALC_Y($[1], $[2], $[3], |
f987e9d2 | 273 | [m4_bmatch([$1], [--yyerror-verbose], |
147e184c | 274 | [[%error-verbose]])])]) |
bfb07874 AD |
275 | |
276 | ||
277 | ||
342b8b6e AD |
278 | # _AT_CHECK_CALC(BISON-OPTIONS, INPUT, [NUM-STDERR-LINES = 0]) |
279 | # ------------------------------------------------------------ | |
bfb07874 | 280 | # Run `calc' on INPUT and expect no STDOUT nor STDERR. |
342b8b6e AD |
281 | # |
282 | # If BISON-OPTIONS contains `--debug', then NUM-STDERR-LINES is the number | |
283 | # of expected lines on stderr. | |
284 | m4_define([_AT_CHECK_CALC], | |
285 | [AT_DATA([[input]], | |
286 | [[$2 | |
287 | ]]) | |
30d2f3d5 | 288 | AT_CHECK([./calc input], 0, [], [stderr])dnl |
342b8b6e | 289 | AT_CHECK([wc -l <stderr | sed 's/[[^0-9]]//g'], 0, |
3c1a79b3 AD |
290 | [m4_bmatch([$1], [--debug], |
291 | [$3], [0]) | |
342b8b6e AD |
292 | ]) |
293 | ]) | |
294 | ||
295 | ||
296 | # _AT_CHECK_CALC_ERROR(BISON-OPTIONS, INPUT, [NUM-DEBUG-LINES], | |
bfb07874 AD |
297 | # [ERROR-LOCATION], [IF-YYERROR-VERBOSE]) |
298 | # ------------------------------------------------------------ | |
342b8b6e AD |
299 | # Run `calc' on INPUT, and expect a `parse error' message. |
300 | # | |
b7c49edf AD |
301 | # If INPUT starts with a slash, it is used as absolute input file name, |
302 | # otherwise as contents. | |
303 | # | |
342b8b6e AD |
304 | # If BISON-OPTIONS contains `--location', then make sure the ERROR-LOCATION |
305 | # is correctly output on stderr. | |
306 | # | |
307 | # If BISON-OPTIONS contains `--yyerror-verbose', then make sure the | |
308 | # IF-YYERROR-VERBOSE message is properly output after `parse error, ' | |
309 | # on STDERR. | |
310 | # | |
311 | # If BISON-OPTIONS contains `--debug', then NUM-STDERR-LINES is the number | |
312 | # of expected lines on stderr. | |
313 | m4_define([_AT_CHECK_CALC_ERROR], | |
b7c49edf | 314 | [m4_bmatch([$2], [^/], |
30d2f3d5 | 315 | [AT_CHECK([./calc $2], 0, [], [stderr])], |
b7c49edf | 316 | [AT_DATA([[input]], |
342b8b6e AD |
317 | [[$2 |
318 | ]]) | |
30d2f3d5 | 319 | AT_CHECK([./calc input], 0, [], [stderr])]) |
342b8b6e AD |
320 | |
321 | ||
322 | AT_CHECK([wc -l <stderr | sed 's/[[^0-9]]//g'], 0, | |
3c1a79b3 AD |
323 | [m4_bmatch([$1], [--debug], |
324 | [$3], [1]) | |
342b8b6e AD |
325 | ]) |
326 | ||
327 | egrep -v '^((Start|Enter|Read|Reduc|Shift)ing|state|Error:) ' stderr >at-stderr | |
328 | mv at-stderr stderr | |
329 | ||
330 | AT_CHECK([cat stderr], 0, | |
3c1a79b3 | 331 | [m4_bmatch([$1], [--location], [$4: ])[]dnl |
bfb07874 | 332 | parse error[]dnl |
3c1a79b3 | 333 | m4_bmatch([$1], [--yyerror-verbose], [, $5])[]dnl |
342b8b6e AD |
334 | |
335 | ]) | |
bfb07874 | 336 | |
342b8b6e | 337 | ]) |
bfb07874 AD |
338 | |
339 | ||
340 | # AT_CHECK_CALC([BISON-OPTIONS], [PARSER-EXPECTED-STDERR]) | |
341 | # -------------------------------------------------------- | |
342 | # Start a testing chunk which compiles `calc' grammar with | |
343 | # BISON-OPTIONS, and performs several tests over the parser. | |
342b8b6e | 344 | m4_define([AT_CHECK_CALC], |
bfb07874 AD |
345 | [# We use integers to avoid dependencies upon the precision of doubles. |
346 | AT_SETUP([Calculator $1]) | |
347 | ||
348 | AT_DATA_CALC_Y([$1]) | |
349 | ||
350 | # Specify the output files to avoid problems on different file systems. | |
3c1a79b3 | 351 | AT_CHECK([bison calc.y -o calc.c m4_bpatsubst([$1], [--yyerror-verbose])], |
bfb07874 | 352 | [0], [], []) |
3c1a79b3 | 353 | |
d803322e | 354 | AT_CHECK([$CC $CFLAGS $CPPFLAGS calc.c -o calc], 0, [], [ignore]) |
bfb07874 AD |
355 | |
356 | # Test the priorities. | |
357 | _AT_CHECK_CALC([$1], | |
358 | [1 + 2 * 3 = 7 | |
359 | 1 + 2 * -3 = -5 | |
360 | ||
361 | -1^2 = -1 | |
362 | (-1)^2 = 1 | |
363 | ||
364 | ---1 = -1 | |
365 | ||
366 | 1 - 2 - 3 = -4 | |
367 | 1 - (2 - 3) = 2 | |
368 | ||
369 | 2^2^3 = 256 | |
3db472b9 | 370 | (2^2)^3 = 64], [486]) |
bfb07874 AD |
371 | |
372 | # Some parse errors. | |
b7c49edf AD |
373 | _AT_CHECK_CALC_ERROR([$1], [0 0], [10], |
374 | [1.2:1.3], | |
375 | [unexpected "number"]) | |
376 | _AT_CHECK_CALC_ERROR([$1], [1//2], [13], | |
bfb07874 | 377 | [1.2:1.3], |
b7c49edf AD |
378 | [unexpected '/', expecting "number" or '-' or '(']) |
379 | _AT_CHECK_CALC_ERROR([$1], [error], [4], | |
bfb07874 | 380 | [1.0:1.1], |
b7c49edf AD |
381 | [unexpected $undefined., expecting "number" or '-' or '\n' or '(']) |
382 | _AT_CHECK_CALC_ERROR([$1], [1 = 2 = 3], [19], | |
bfb07874 | 383 | [1.6:1.7], |
f0473484 | 384 | [unexpected '=']) |
bfb07874 AD |
385 | _AT_CHECK_CALC_ERROR([$1], |
386 | [ | |
387 | +1], | |
b7c49edf | 388 | [13], |
bfb07874 | 389 | [2.0:2.1], |
f0473484 | 390 | [unexpected '+']) |
b7c49edf AD |
391 | # Exercise error messages with EOF: work on an empty file. |
392 | _AT_CHECK_CALC_ERROR([$1], | |
393 | [/dev/null], | |
394 | [4], | |
395 | [1.0:1.1], | |
396 | [unexpected "end of file", expecting "number" or '-' or '\n' or '(']) | |
bfb07874 | 397 | |
d803322e | 398 | AT_CLEANUP |
bfb07874 AD |
399 | ])# AT_CHECK_CALC |
400 | ||
401 | ||
402 | ||
403 | ||
404 | # ------------------ # | |
405 | # Test the parsers. # | |
406 | # ------------------ # | |
407 | ||
408 | AT_CHECK_CALC() | |
bfb07874 AD |
409 | |
410 | AT_CHECK_CALC([--defines]) | |
411 | AT_CHECK_CALC([--locations]) | |
412 | AT_CHECK_CALC([--name-prefix=calc]) | |
413 | AT_CHECK_CALC([--verbose]) | |
414 | AT_CHECK_CALC([--yacc]) | |
415 | AT_CHECK_CALC([--yyerror-verbose]) | |
416 | ||
417 | AT_CHECK_CALC([--locations --yyerror-verbose]) | |
418 | ||
419 | AT_CHECK_CALC([--defines --locations --name-prefix=calc --verbose --yacc --yyerror-verbose]) | |
420 | ||
421 | AT_CHECK_CALC([--debug]) | |
422 | AT_CHECK_CALC([--debug --defines --locations --name-prefix=calc --verbose --yacc --yyerror-verbose]) |