1 # Checking Push Parsing. -*- Autotest -*-
2 # Copyright (C) 2007 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 3 of the License, or
7 # (at your option) any later version.
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, see <http://www.gnu.org/licenses/>.
17 AT_BANNER([[Push Parsing Tests]])
19 ## ---------------------------------------------- ##
20 ## Push Parsing: Memory Leak for Early Deletion. ##
21 ## ---------------------------------------------- ##
23 AT_SETUP([[Push Parsing: Memory Leak for Early Deletion]])
27 AT_DATA_GRAMMAR([[input.y]],
33 void yyerror (char const *msg);
36 %pure-parser %push-parser
45 yyerror (char const *msg)
47 fprintf (stderr, "%s\n", msg);
55 /* Make sure we don't try to free ps->yyss in this case. */
59 /* yypstate_delete used to leak ps->yyss if the stack was reallocated but the
60 parse did not return on success, syntax error, or memory exhaustion. */
62 assert (yypush_parse (ps, 'a', NULL) == YYPUSH_MORE);
66 assert (yypush_parse (ps, 'a', NULL) == YYPUSH_MORE);
67 assert (yypush_parse (ps, 'b', NULL) == YYPUSH_MORE);
74 AT_CHECK([[bison -o input.c input.y]])
76 AT_PARSER_CHECK([[./input]])
81 ## ----------------------------------------- ##
82 ## Push Parsing: Multiple impure instances. ##
83 ## ----------------------------------------- ##
85 AT_SETUP([[Push Parsing: Multiple impure instances]])
87 AT_DATA_GRAMMAR([[input.y]],
92 void yyerror (char const *msg);
105 yyerror (char const *msg)
107 fprintf (stderr, "%s\n", msg);
122 for (i = 0; i < 2; ++i)
124 ps = yypstate_new ();
126 assert (yypstate_new () == NULL);
127 assert (yyparse () == 2);
129 assert (yypush_parse (ps) == 0);
130 assert (yypstate_new () == NULL);
131 assert (yyparse () == 2);
132 yypstate_delete (ps);
139 AT_CHECK([[bison -o input.c input.y]])
140 AT_COMPILE([[input]])
141 AT_PARSER_CHECK([[./input]], 0, [],
142 [[cannot allocate multiple impure push-parser instances
143 cannot allocate multiple impure push-parser instances
144 cannot allocate multiple impure push-parser instances
145 cannot allocate multiple impure push-parser instances
146 cannot allocate multiple impure push-parser instances
147 cannot allocate multiple impure push-parser instances
148 cannot allocate multiple impure push-parser instances
149 cannot allocate multiple impure push-parser instances