]>
Commit | Line | Data |
---|---|---|
eb1b0740 | 1 | # Checking Push Parsing. -*- Autotest -*- |
812775a0 | 2 | # Copyright (C) 2007, 2009 Free Software Foundation, Inc. |
eb1b0740 | 3 | |
f16b0819 | 4 | # This program is free software: you can redistribute it and/or modify |
eb1b0740 | 5 | # it under the terms of the GNU General Public License as published by |
f16b0819 PE |
6 | # the Free Software Foundation, either version 3 of the License, or |
7 | # (at your option) any later version. | |
8 | # | |
eb1b0740 JD |
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. | |
f16b0819 | 13 | # |
eb1b0740 | 14 | # You should have received a copy of the GNU General Public License |
f16b0819 | 15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
eb1b0740 JD |
16 | |
17 | AT_BANNER([[Push Parsing Tests]]) | |
18 | ||
19 | ## ---------------------------------------------- ## | |
20 | ## Push Parsing: Memory Leak for Early Deletion. ## | |
21 | ## ---------------------------------------------- ## | |
22 | ||
23 | AT_SETUP([[Push Parsing: Memory Leak for Early Deletion]]) | |
24 | ||
25 | # Requires Valgrind. | |
26 | ||
27 | AT_DATA_GRAMMAR([[input.y]], | |
28 | [[ | |
29 | %{ | |
30 | #include <assert.h> | |
31 | #include <stdio.h> | |
32 | #define YYINITDEPTH 1 | |
33 | void yyerror (char const *msg); | |
34 | %} | |
35 | ||
812775a0 | 36 | %define api.pure %define api.push-pull "push" |
eb1b0740 JD |
37 | |
38 | %% | |
39 | ||
40 | start: 'a' 'b' 'c' ; | |
41 | ||
42 | %% | |
43 | ||
44 | void | |
45 | yyerror (char const *msg) | |
46 | { | |
47 | fprintf (stderr, "%s\n", msg); | |
48 | } | |
49 | ||
50 | int | |
51 | main (void) | |
52 | { | |
5d31a216 JD |
53 | yypstate *ps; |
54 | ||
55 | /* Make sure we don't try to free ps->yyss in this case. */ | |
56 | ps = yypstate_new (); | |
57 | yypstate_delete (ps); | |
58 | ||
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. */ | |
61 | ps = yypstate_new (); | |
62 | assert (yypush_parse (ps, 'a', NULL) == YYPUSH_MORE); | |
63 | yypstate_delete (ps); | |
64 | ||
65 | ps = yypstate_new (); | |
66 | assert (yypush_parse (ps, 'a', NULL) == YYPUSH_MORE); | |
67 | assert (yypush_parse (ps, 'b', NULL) == YYPUSH_MORE); | |
68 | yypstate_delete (ps); | |
eb1b0740 JD |
69 | |
70 | return 0; | |
71 | } | |
72 | ]]) | |
73 | ||
da730230 | 74 | AT_BISON_CHECK([[-o input.c input.y]]) |
eb1b0740 JD |
75 | AT_COMPILE([[input]]) |
76 | AT_PARSER_CHECK([[./input]]) | |
77 | ||
78 | AT_CLEANUP | |
1b17b01d | 79 | |
1b17b01d JD |
80 | ## ----------------------------------------- ## |
81 | ## Push Parsing: Multiple impure instances. ## | |
82 | ## ----------------------------------------- ## | |
83 | ||
84 | AT_SETUP([[Push Parsing: Multiple impure instances]]) | |
85 | ||
333e670c | 86 | m4_pushdef([AT_MULTIPLE_IMPURE_INSTANCES_CHECK], [ |
1b17b01d JD |
87 | AT_DATA_GRAMMAR([[input.y]], |
88 | [[ | |
89 | %{ | |
90 | #include <assert.h> | |
91 | #include <stdio.h> | |
92 | void yyerror (char const *msg); | |
93 | int yylex (void); | |
94 | %} | |
95 | ||
812775a0 | 96 | %define api.push-pull "]$1[" |
1b17b01d JD |
97 | |
98 | %% | |
99 | ||
100 | start: ; | |
101 | ||
102 | %% | |
103 | ||
104 | void | |
105 | yyerror (char const *msg) | |
106 | { | |
107 | fprintf (stderr, "%s\n", msg); | |
108 | } | |
109 | ||
110 | int | |
111 | yylex (void) | |
112 | { | |
113 | return 0; | |
114 | } | |
115 | ||
116 | int | |
117 | main (void) | |
118 | { | |
119 | yypstate *ps; | |
120 | int i; | |
121 | ||
122 | for (i = 0; i < 2; ++i) | |
123 | { | |
124 | ps = yypstate_new (); | |
125 | assert (ps); | |
126 | assert (yypstate_new () == NULL); | |
333e670c | 127 | ]m4_if([$1], [[both]], [[assert (yyparse () == 2)]])[; |
1b17b01d JD |
128 | yychar = 0; |
129 | assert (yypush_parse (ps) == 0); | |
130 | assert (yypstate_new () == NULL); | |
333e670c | 131 | ]m4_if([$1], [[both]], [[assert (yyparse () == 2)]])[; |
1b17b01d JD |
132 | yypstate_delete (ps); |
133 | } | |
134 | ||
135 | return 0; | |
136 | } | |
137 | ]]) | |
138 | ||
da730230 | 139 | AT_BISON_CHECK([[-o input.c input.y]]) |
1b17b01d | 140 | AT_COMPILE([[input]]) |
333e670c JD |
141 | AT_PARSER_CHECK([[./input]]) |
142 | ]) | |
143 | ||
144 | AT_MULTIPLE_IMPURE_INSTANCES_CHECK([[both]]) | |
145 | AT_MULTIPLE_IMPURE_INSTANCES_CHECK([[push]]) | |
146 | ||
147 | m4_popdef([AT_MULTIPLE_IMPURE_INSTANCES_CHECK]) | |
1b17b01d JD |
148 | |
149 | AT_CLEANUP | |
d782395d JD |
150 | |
151 | ## ------------------------------------- ## | |
152 | ## Push Parsing: Unsupported Skeletons. ## | |
153 | ## ------------------------------------- ## | |
154 | ||
155 | AT_SETUP([[Push Parsing: Unsupported Skeletons]]) | |
156 | ||
157 | AT_DATA([[input.y]], | |
158 | [[%glr-parser | |
812775a0 | 159 | %define api.push-pull "push" |
d782395d JD |
160 | %% |
161 | start: ; | |
162 | ]]) | |
163 | ||
da730230 | 164 | AT_BISON_CHECK([[input.y]], [0], [], |
812775a0 | 165 | [[input.y:2.9-21: warning: %define variable `api.push-pull' is not used |
d782395d JD |
166 | ]]) |
167 | ||
168 | AT_CLEANUP |