]>
Commit | Line | Data |
---|---|---|
6d7d248e | 1 | # Torturing Bison. -*- Autotest -*- |
6e30ede8 | 2 | |
c932d613 | 3 | # Copyright (C) 2001-2002, 2004-2007, 2009-2012 Free Software |
ea0a7676 | 4 | # Foundation, Inc. |
6d7d248e | 5 | |
f16b0819 | 6 | # This program is free software: you can redistribute it and/or modify |
6d7d248e | 7 | # it under the terms of the GNU General Public License as published by |
f16b0819 PE |
8 | # the Free Software Foundation, either version 3 of the License, or |
9 | # (at your option) any later version. | |
10 | # | |
6d7d248e AD |
11 | # This program is distributed in the hope that it will be useful, |
12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | # GNU General Public License for more details. | |
f16b0819 | 15 | # |
6d7d248e | 16 | # You should have received a copy of the GNU General Public License |
f16b0819 | 17 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
6d7d248e AD |
18 | |
19 | AT_BANNER([[Torture Tests.]]) | |
20 | ||
21 | ||
49e794c5 | 22 | # AT_INCREASE_DATA_SIZE(SIZE) |
f79b4f5c | 23 | # --------------------------- |
49e794c5 PE |
24 | # Try to increase the data size to SIZE KiB if possible. |
25 | m4_define([AT_INCREASE_DATA_SIZE], | |
26 | [data_limit=`(ulimit -S -d) 2>/dev/null` | |
27 | case $data_limit in | |
28 | [[0-9]]*) | |
29 | if test "$data_limit" -lt $1; then | |
f79b4f5c | 30 | AT_CHECK([ulimit -S -d $1 || exit 77]) |
49e794c5 PE |
31 | ulimit -S -d $1 |
32 | fi | |
33 | esac]) | |
34 | ||
35 | ||
817e9f41 AD |
36 | ## ------------------------------------- ## |
37 | ## Creating a large artificial grammar. ## | |
38 | ## ------------------------------------- ## | |
39 | ||
40 | # AT_DATA_TRIANGULAR_GRAMMAR(FILE-NAME, SIZE) | |
41 | # ------------------------------------------- | |
42 | # Create FILE-NAME, containing a self checking parser for a huge | |
43 | # triangular grammar. | |
817e9f41 AD |
44 | m4_define([AT_DATA_TRIANGULAR_GRAMMAR], |
45 | [AT_DATA([[gengram.pl]], | |
46 | [[#! /usr/bin/perl -w | |
47 | ||
48 | use strict; | |
49 | my $max = $ARGV[0] || 10; | |
50 | ||
51 | print <<EOF; | |
9501dc6e | 52 | ]AT_DATA_GRAMMAR_PROLOGUE[ |
8f3596a6 AD |
53 | %error-verbose |
54 | %debug | |
817e9f41 AD |
55 | %{ |
56 | #include <stdio.h> | |
57 | #include <stdlib.h> | |
817e9f41 | 58 | |
55f48c48 AD |
59 | ]AT_YYLEX_DECLARE[ |
60 | ]AT_YYERROR_DECLARE[ | |
817e9f41 AD |
61 | %} |
62 | %union | |
63 | { | |
64 | int val; | |
65 | }; | |
66 | ||
67 | %token END "end" | |
68 | %type <val> exp input | |
69 | EOF | |
70 | ||
71 | for my $size (1 .. $max) | |
72 | { | |
e9955c83 | 73 | print "%token t$size $size \"$size\"\n"; |
817e9f41 AD |
74 | }; |
75 | ||
76 | print <<EOF; | |
77 | %% | |
78 | input: | |
66871a81 PE |
79 | exp { if (\@S|@1 != 0) abort (); \$\$ = \@S|@1; } |
80 | | input exp { if (\@S|@2 != \@S|@1 + 1) abort (); \$\$ = \@S|@2; } | |
817e9f41 AD |
81 | ; |
82 | ||
83 | exp: | |
84 | END | |
85 | { \$\$ = 0; } | |
86 | EOF | |
87 | ||
88 | for my $size (1 .. $max) | |
89 | { | |
90 | use Text::Wrap; | |
91 | print wrap ("| ", " ", | |
92 | (map { "\"$_\"" } (1 .. $size)), | |
93 | " END \n"), | |
94 | " { \$\$ = $size; }\n"; | |
95 | }; | |
96 | print ";\n"; | |
97 | ||
98 | print <<EOF; | |
99 | %% | |
100 | static int | |
101 | yylex (void) | |
102 | { | |
103 | static int inner = 1; | |
104 | static int outer = 0; | |
105 | if (outer > $max) | |
106 | return 0; | |
107 | else if (inner > outer) | |
108 | { | |
109 | inner = 1; | |
110 | ++outer; | |
111 | return END; | |
112 | } | |
23c5a174 | 113 | return inner++; |
817e9f41 AD |
114 | } |
115 | ||
116 | static void | |
117 | yyerror (const char *msg) | |
118 | { | |
119 | fprintf (stderr, "%s\\n", msg); | |
120 | } | |
121 | ||
122 | int | |
123 | main (void) | |
124 | { | |
125 | yydebug = !!getenv ("YYDEBUG"); | |
126 | return yyparse (); | |
127 | } | |
128 | EOF | |
129 | ]]) | |
130 | ||
131 | AT_CHECK([perl -w ./gengram.pl $2 || exit 77], 0, [stdout]) | |
132 | mv stdout $1 | |
133 | ]) | |
134 | ||
135 | ||
136 | ## -------------- ## | |
137 | ## Big triangle. ## | |
138 | ## -------------- ## | |
139 | ||
817e9f41 AD |
140 | AT_SETUP([Big triangle]) |
141 | ||
355e7c1c AD |
142 | # I have been able to go up to 2000 on my machine. |
143 | # I tried 3000, a 29Mb grammar file, but then my system killed bison. | |
e9955c83 AD |
144 | # With 500 and the new parser, which consume far too much memory, |
145 | # it gets killed too. Of course the parser is to be cleaned. | |
146 | AT_DATA_TRIANGULAR_GRAMMAR([input.y], [200]) | |
da730230 | 147 | AT_BISON_CHECK_NO_XML([-v -o input.c input.y]) |
1154cced AD |
148 | AT_COMPILE([input]) |
149 | AT_PARSER_CHECK([./input]) | |
817e9f41 AD |
150 | |
151 | AT_CLEANUP | |
152 | ||
153 | ||
154 | ||
62a3e4f0 AD |
155 | # AT_DATA_HORIZONTAL_GRAMMAR(FILE-NAME, SIZE) |
156 | # ------------------------------------------- | |
157 | # Create FILE-NAME, containing a self checking parser for a huge | |
158 | # horizontal grammar. | |
62a3e4f0 AD |
159 | m4_define([AT_DATA_HORIZONTAL_GRAMMAR], |
160 | [AT_DATA([[gengram.pl]], | |
161 | [[#! /usr/bin/perl -w | |
162 | ||
163 | use strict; | |
164 | my $max = $ARGV[0] || 10; | |
165 | ||
166 | print <<EOF; | |
9501dc6e | 167 | ]AT_DATA_GRAMMAR_PROLOGUE[ |
8f3596a6 AD |
168 | %error-verbose |
169 | %debug | |
62a3e4f0 AD |
170 | %{ |
171 | #include <stdio.h> | |
172 | #include <stdlib.h> | |
62a3e4f0 | 173 | |
55f48c48 AD |
174 | ]AT_YYLEX_DECLARE[ |
175 | ]AT_YYERROR_DECLARE[ | |
62a3e4f0 | 176 | %} |
62a3e4f0 | 177 | |
8f3596a6 AD |
178 | %token |
179 | EOF | |
62a3e4f0 AD |
180 | for my $size (1 .. $max) |
181 | { | |
8f3596a6 | 182 | print " t$size $size \"$size\"\n"; |
62a3e4f0 AD |
183 | }; |
184 | ||
185 | print <<EOF; | |
8f3596a6 | 186 | |
62a3e4f0 AD |
187 | %% |
188 | EOF | |
189 | ||
190 | use Text::Wrap; | |
191 | ||
192 | wrap ("exp: ", " ", | |
193 | (map { "\"$_\"" } (1 .. $max)), ";"), | |
194 | "\n"; | |
195 | ||
196 | print <<EOF; | |
197 | %% | |
198 | static int | |
199 | yylex (void) | |
200 | { | |
201 | static int counter = 1; | |
cf806753 PE |
202 | if (counter <= $max) |
203 | return counter++; | |
204 | if (counter++ != $max + 1) | |
205 | abort (); | |
206 | return 0; | |
62a3e4f0 AD |
207 | } |
208 | ||
209 | static void | |
210 | yyerror (const char *msg) | |
211 | { | |
212 | fprintf (stderr, "%s\\n", msg); | |
213 | } | |
214 | ||
215 | int | |
216 | main (void) | |
217 | { | |
218 | yydebug = !!getenv ("YYDEBUG"); | |
219 | return yyparse (); | |
220 | } | |
221 | EOF | |
222 | ]]) | |
223 | ||
224 | AT_CHECK([perl -w ./gengram.pl $2 || exit 77], 0, [stdout]) | |
225 | mv stdout $1 | |
226 | ]) | |
227 | ||
228 | ||
229 | ## ---------------- ## | |
230 | ## Big horizontal. ## | |
231 | ## ---------------- ## | |
232 | ||
233 | AT_SETUP([Big horizontal]) | |
234 | ||
235 | # I have been able to go up to 10000 on my machine, but I had to | |
236 | # increase the maximum stack size (* 100). It gave: | |
237 | # | |
238 | # input.y 263k | |
239 | # input.tab.c 1.3M | |
240 | # input 453k | |
241 | # | |
242 | # gengram.pl 10000 0.70s user 0.01s sys 99% cpu 0.711 total | |
243 | # bison input.y 730.56s user 0.53s sys 99% cpu 12:12.34 total | |
244 | # gcc -Wall input.tab.c -o input 5.81s user 0.20s sys 100% cpu 6.01 total | |
245 | # ./input 0.00s user 0.01s sys 108% cpu 0.01 total | |
246 | # | |
247 | AT_DATA_HORIZONTAL_GRAMMAR([input.y], [1000]) | |
49e794c5 PE |
248 | |
249 | # GNU m4 requires about 70 MiB for this test on a 32-bit host. | |
250 | # Ask for 200 MiB, which should be plenty even on a 64-bit host. | |
251 | AT_INCREASE_DATA_SIZE(204000) | |
252 | ||
da730230 | 253 | AT_BISON_CHECK_NO_XML([-v -o input.c input.y]) |
1154cced AD |
254 | AT_COMPILE([input]) |
255 | AT_PARSER_CHECK([./input]) | |
62a3e4f0 AD |
256 | |
257 | AT_CLEANUP | |
258 | ||
259 | ||
260 | ||
742e4900 | 261 | # AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR(FILE-NAME, SIZE) |
8f3596a6 | 262 | # -------------------------------------------------- |
39ceb25b | 263 | # Create FILE-NAME, containing a self checking parser for a grammar |
742e4900 JD |
264 | # requiring SIZE lookahead tokens. |
265 | m4_define([AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR], | |
39ceb25b AD |
266 | [AT_DATA([[gengram.pl]], |
267 | [[#! /usr/bin/perl -w | |
268 | ||
269 | use strict; | |
270 | use Text::Wrap; | |
271 | my $max = $ARGV[0] || 10; | |
272 | ||
273 | print <<EOF; | |
8f3596a6 AD |
274 | %error-verbose |
275 | %debug | |
39ceb25b | 276 | %{ |
8f3596a6 AD |
277 | # include <stdio.h> |
278 | # include <stdlib.h> | |
279 | # include <assert.h> | |
39ceb25b | 280 | |
55f48c48 AD |
281 | ]AT_YYLEX_DECLARE[ |
282 | ]AT_YYERROR_DECLARE[ | |
39ceb25b AD |
283 | %} |
284 | %union | |
285 | { | |
286 | int val; | |
287 | }; | |
288 | ||
289 | %type <val> input exp | |
290 | %token token | |
291 | EOF | |
292 | ||
293 | ||
294 | wrap ("%type <val> ", | |
295 | " ", | |
e9955c83 | 296 | map { "n$_" } (1 .. $max)), |
39ceb25b AD |
297 | "\n"; |
298 | ||
8f3596a6 | 299 | print "%token\n"; |
39ceb25b AD |
300 | for my $count (1 .. $max) |
301 | { | |
8f3596a6 | 302 | print " t$count $count \"$count\"\n"; |
39ceb25b AD |
303 | }; |
304 | ||
305 | print <<EOF; | |
306 | %% | |
307 | input: | |
8f3596a6 AD |
308 | exp { assert (\@S|@1 == 1); \$\$ = \@S|@1; } |
309 | | input exp { assert (\@S|@2 == \@S|@1 + 1); \$\$ = \@S|@2; } | |
39ceb25b AD |
310 | ; |
311 | ||
312 | exp: | |
8f3596a6 | 313 | n1 "1" { assert (\@S|@1 == 1); \@S|@\@S|@ = \@S|@1; } |
39ceb25b AD |
314 | EOF |
315 | ||
316 | for my $count (2 .. $max) | |
317 | { | |
8f3596a6 | 318 | print "| n$count \"$count\" { assert (\@S|@1 == $count); \@S|@\@S|@ = \@S|@1; }\n"; |
39ceb25b AD |
319 | }; |
320 | print ";\n"; | |
321 | ||
322 | for my $count (1 .. $max) | |
323 | { | |
e9955c83 | 324 | print "n$count: token { \$\$ = $count; };\n"; |
39ceb25b AD |
325 | }; |
326 | ||
327 | print <<EOF; | |
328 | %% | |
329 | static int | |
330 | yylex (void) | |
331 | { | |
332 | static int return_token = 1; | |
333 | static int counter = 1; | |
334 | if (counter > $max) | |
cf806753 PE |
335 | { |
336 | if (counter++ != $max + 1) | |
337 | abort (); | |
338 | return 0; | |
339 | } | |
39ceb25b AD |
340 | if (return_token) |
341 | { | |
342 | return_token = 0; | |
343 | return token; | |
344 | } | |
345 | return_token = 1; | |
346 | return counter++; | |
347 | } | |
348 | ||
349 | static void | |
350 | yyerror (const char *msg) | |
351 | { | |
352 | fprintf (stderr, "%s\\n", msg); | |
353 | } | |
354 | ||
355 | int | |
356 | main (void) | |
357 | { | |
358 | yydebug = !!getenv ("YYDEBUG"); | |
359 | return yyparse (); | |
360 | } | |
361 | EOF | |
362 | ]]) | |
363 | ||
364 | AT_CHECK([perl -w ./gengram.pl $2 || exit 77], 0, [stdout]) | |
365 | mv stdout $1 | |
366 | ]) | |
367 | ||
368 | ||
8dd162d3 | 369 | ## ------------------------ ## |
7d596384 | 370 | ## Many lookahead tokens. ## |
8dd162d3 | 371 | ## ------------------------ ## |
39ceb25b | 372 | |
742e4900 | 373 | AT_SETUP([Many lookahead tokens]) |
39ceb25b | 374 | |
742e4900 | 375 | AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR([input.y], [1000]) |
49e794c5 PE |
376 | |
377 | # GNU m4 requires about 70 MiB for this test on a 32-bit host. | |
378 | # Ask for 200 MiB, which should be plenty even on a 64-bit host. | |
379 | AT_INCREASE_DATA_SIZE(204000) | |
380 | ||
da730230 | 381 | AT_BISON_CHECK([-v -o input.c input.y]) |
1154cced AD |
382 | AT_COMPILE([input]) |
383 | AT_PARSER_CHECK([./input]) | |
39ceb25b AD |
384 | |
385 | AT_CLEANUP | |
386 | ||
387 | ||
388 | ||
7d596384 JD |
389 | # AT_DATA_STACK_TORTURE(C-PROLOGUE, [BISON-DECLS]) |
390 | # ------------------------------------------------ | |
6d7d248e AD |
391 | # A parser specialized in torturing the stack size. |
392 | m4_define([AT_DATA_STACK_TORTURE], | |
55f48c48 AD |
393 | [AT_BISON_OPTION_PUSHDEFS([$2]) |
394 | # A grammar of parens growing the stack thanks to right recursion. | |
6d7d248e AD |
395 | # exp: |
396 | AT_DATA([input.y], | |
397 | [[%{ | |
04098407 PE |
398 | #include <errno.h> |
399 | #include <limits.h> | |
6d7d248e AD |
400 | #include <stdio.h> |
401 | #include <stdlib.h> | |
6d7d248e | 402 | ]$1[ |
55f48c48 AD |
403 | ]AT_YYLEX_DECLARE[ |
404 | ]AT_YYERROR_DECLARE[ | |
6d7d248e | 405 | %} |
7d596384 | 406 | ]$2[ |
04d843a2 | 407 | %error-verbose |
6d7d248e AD |
408 | %debug |
409 | %token WAIT_FOR_EOF | |
410 | %% | |
411 | exp: WAIT_FOR_EOF exp | ; | |
412 | %% | |
55f48c48 | 413 | ]AT_YYERROR_DEFINE[ |
6d7d248e AD |
414 | static int |
415 | yylex (void) | |
416 | { | |
cf806753 PE |
417 | if (yylval < 0) |
418 | abort (); | |
6d7d248e AD |
419 | if (yylval--) |
420 | return WAIT_FOR_EOF; | |
421 | else | |
422 | return EOF; | |
423 | } | |
424 | ||
425 | int | |
426 | main (int argc, const char **argv) | |
427 | { | |
04098407 | 428 | char *endp; |
7d596384 | 429 | YYSTYPE yylval_init; |
66871a81 PE |
430 | if (argc != 2) |
431 | abort (); | |
7d596384 | 432 | yylval_init = strtol (argv[1], &endp, 10); |
04098407 | 433 | if (! (argv[1] != endp |
7d596384 | 434 | && 0 <= yylval_init && yylval_init <= INT_MAX |
04098407 PE |
435 | && errno != ERANGE)) |
436 | abort (); | |
6d7d248e | 437 | yydebug = 1; |
7d596384 JD |
438 | { |
439 | int count; | |
440 | int status; | |
441 | ]m4_bmatch([$2], [%push-], | |
5d31a216 | 442 | [[ yypstate *ps = yypstate_new (); |
7d596384 JD |
443 | ]])[ for (count = 0; count < 2; ++count) |
444 | { | |
445 | int new_status; | |
446 | yylval = yylval_init; | |
447 | ]m4_bmatch([$2], [%push-], | |
5d31a216 | 448 | [[ new_status = yypull_parse (ps); |
7d596384 JD |
449 | ]], |
450 | [[ new_status = yyparse (); | |
451 | ]])[ if (count > 0 && new_status != status) | |
452 | abort (); | |
453 | status = new_status; | |
454 | } | |
455 | ]m4_bmatch([$2], [%push-], | |
5d31a216 | 456 | [[ yypstate_delete (ps); |
7d596384 JD |
457 | ]])[ return status; |
458 | } | |
6d7d248e AD |
459 | } |
460 | ]]) | |
55f48c48 | 461 | AT_BISON_OPTION_POPDEFS([$2]) |
da730230 | 462 | AT_BISON_CHECK([-o input.c input.y]) |
1154cced | 463 | AT_COMPILE([input]) |
6d7d248e AD |
464 | ]) |
465 | ||
466 | ||
467 | ## -------------------------------------- ## | |
468 | ## Exploding the Stack Size with Alloca. ## | |
469 | ## -------------------------------------- ## | |
470 | ||
471 | AT_SETUP([Exploding the Stack Size with Alloca]) | |
472 | ||
7d596384 | 473 | m4_pushdef([AT_USE_ALLOCA], [[ |
0d50976f | 474 | #if (defined __GNUC__ || defined __BUILTIN_VA_ARG_INCR \ |
62c4328e | 475 | || defined _AIX || defined _MSC_VER || defined _ALLOCA_H) |
577d7c33 PE |
476 | # define YYSTACK_USE_ALLOCA 1 |
477 | #endif | |
478 | ]]) | |
6d7d248e | 479 | |
7d596384 JD |
480 | AT_DATA_STACK_TORTURE([AT_USE_ALLOCA]) |
481 | ||
6d7d248e | 482 | # Below the limit of 200. |
e0ac9b4b JD |
483 | AT_PARSER_CHECK([./input 20], 0, [], [ignore], |
484 | [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]]) | |
6d7d248e | 485 | # Two enlargements: 2 * 2 * 200. |
e0ac9b4b JD |
486 | AT_PARSER_CHECK([./input 900], 0, [], [ignore], |
487 | [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]]) | |
6d7d248e AD |
488 | # Fails: beyond the limit of 10,000 (which we don't reach anyway since we |
489 | # multiply by two starting at 200 => 5120 is the last possible). | |
e0ac9b4b JD |
490 | AT_PARSER_CHECK([./input 10000], 2, [], [ignore], |
491 | [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]]) | |
6d7d248e | 492 | |
78143faa JD |
493 | # The push parser can't use alloca since the stacks can't be locals. This test |
494 | # just helps guarantee we don't let the YYSTACK_USE_ALLOCA feature affect | |
495 | # push parsers. | |
7d596384 | 496 | AT_DATA_STACK_TORTURE([AT_USE_ALLOCA], |
f37495f6 | 497 | [[%define api.push-pull both |
7d596384 | 498 | ]]) |
e0ac9b4b JD |
499 | AT_PARSER_CHECK([./input 20], 0, [], [ignore], |
500 | [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]]) | |
501 | AT_PARSER_CHECK([./input 900], 0, [], [ignore], | |
502 | [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]]) | |
503 | AT_PARSER_CHECK([./input 10000], 2, [], [ignore], | |
504 | [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]]) | |
7d596384 JD |
505 | |
506 | m4_popdef([AT_USE_ALLOCA]) | |
507 | ||
6d7d248e AD |
508 | AT_CLEANUP |
509 | ||
510 | ||
511 | ||
512 | ||
513 | ## -------------------------------------- ## | |
514 | ## Exploding the Stack Size with Malloc. ## | |
515 | ## -------------------------------------- ## | |
516 | ||
517 | AT_SETUP([Exploding the Stack Size with Malloc]) | |
518 | ||
7d596384 JD |
519 | m4_pushdef([AT_USE_ALLOCA], [[#define YYSTACK_USE_ALLOCA 0]]) |
520 | ||
521 | AT_DATA_STACK_TORTURE([AT_USE_ALLOCA]) | |
6d7d248e AD |
522 | |
523 | # Below the limit of 200. | |
e0ac9b4b JD |
524 | AT_PARSER_CHECK([./input 20], 0, [], [ignore], |
525 | [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]]) | |
6d7d248e | 526 | # Two enlargements: 2 * 2 * 200. |
e0ac9b4b JD |
527 | AT_PARSER_CHECK([./input 900], 0, [], [ignore], |
528 | [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]]) | |
6d7d248e AD |
529 | # Fails: beyond the limit of 10,000 (which we don't reach anyway since we |
530 | # multiply by two starting at 200 => 5120 is the possible). | |
e0ac9b4b JD |
531 | AT_PARSER_CHECK([./input 10000], 2, [], [ignore], |
532 | [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]]) | |
6d7d248e | 533 | |
7d596384 | 534 | AT_DATA_STACK_TORTURE([AT_USE_ALLOCA], |
f37495f6 | 535 | [[%define api.push-pull both |
7d596384 | 536 | ]]) |
e0ac9b4b JD |
537 | AT_PARSER_CHECK([./input 20], 0, [], [ignore], |
538 | [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]]) | |
539 | AT_PARSER_CHECK([./input 900], 0, [], [ignore], | |
540 | [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]]) | |
541 | AT_PARSER_CHECK([./input 10000], 2, [], [ignore], | |
542 | [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]]) | |
7d596384 JD |
543 | |
544 | m4_popdef([AT_USE_ALLOCA]) | |
545 | ||
6d7d248e | 546 | AT_CLEANUP |