]>
Commit | Line | Data |
---|---|---|
b9cecb91 | 1 | # Bison Parser Headers. -*- Autotest -*- |
6e30ede8 | 2 | |
c932d613 | 3 | # Copyright (C) 2001-2002, 2006-2007, 2009-2012 Free Software |
1462fcee | 4 | # Foundation, Inc. |
b9cecb91 | 5 | |
f16b0819 | 6 | # This program is free software: you can redistribute it and/or modify |
b9cecb91 | 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 | # | |
b9cecb91 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 | # |
b9cecb91 | 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/>. |
b9cecb91 AD |
18 | |
19 | AT_BANNER([[Parser Headers.]]) | |
20 | ||
21 | ||
b9cecb91 AD |
22 | ## --------------------- ## |
23 | ## Invalid CPP headers. ## | |
24 | ## --------------------- ## | |
25 | ||
9d67a52a AD |
26 | # AT_TEST_CPP_GUARD_H(BASE-NAME, [DIRECTIVES]) |
27 | # -------------------------------------------- | |
28 | # FIXME: Much of this can be covered by calc.at. | |
b9cecb91 | 29 | m4_define([AT_TEST_CPP_GUARD_H], |
9d67a52a | 30 | [AT_SETUP([Invalid CPP guards: $2 --defines=$1.h]) |
55f48c48 | 31 | AT_BISON_OPTION_PUSHDEFS([$2]) |
b9cecb91 AD |
32 | # Possibly create inner directories. |
33 | dirname=`AS_DIRNAME([$1])` | |
34 | AS_MKDIR_P([$dirname]) | |
35 | ||
9501dc6e | 36 | AT_DATA_GRAMMAR([$1.y], |
9d67a52a AD |
37 | [$2 |
38 | %{ | |
fe6c2fde | 39 | #include <$1.h> |
55f48c48 AD |
40 | ]AT_YYERROR_DECLARE_EXTERN[ |
41 | ]AT_YYLEX_DECLARE_EXTERN[ | |
1d39f854 PE |
42 | %} |
43 | %% | |
bfcf1f3a | 44 | dummy:; |
1d39f854 | 45 | %% |
fe6c2fde | 46 | #include <$1.h> |
b9cecb91 AD |
47 | ]) |
48 | ||
9d67a52a | 49 | AT_BISON_CHECK([--defines=$1.h --output=$1.c $1.y]) |
b9cecb91 | 50 | |
9d67a52a | 51 | AT_COMPILE([$1.o], [-I. -c $1.c]) |
b9cecb91 | 52 | |
55f48c48 | 53 | AT_BISON_OPTION_POPDEFS |
b9cecb91 AD |
54 | AT_CLEANUP |
55 | ]) | |
56 | ||
57 | AT_TEST_CPP_GUARD_H([input/input]) | |
58 | AT_TEST_CPP_GUARD_H([9foo]) | |
9d67a52a AD |
59 | AT_TEST_CPP_GUARD_H([input/input], [%glr-parser]) |
60 | AT_TEST_CPP_GUARD_H([9foo], [%glr-parser]) | |
b9cecb91 AD |
61 | |
62 | ||
63 | ||
64 | ## ---------------- ## | |
65 | ## export YYLTYPE. ## | |
66 | ## ---------------- ## | |
67 | ||
68 | ||
69 | AT_SETUP([export YYLTYPE]) | |
70 | ||
9501dc6e | 71 | AT_DATA_GRAMMAR([input.y], |
b9cecb91 | 72 | [%locations |
b5b61c61 | 73 | |
02975b9a | 74 | %name-prefix "my_" |
b9cecb91 AD |
75 | %{ |
76 | #include <stdio.h> | |
77 | #include <stdlib.h> | |
78 | ||
7172e23e | 79 | static int |
b5b61c61 | 80 | my_lex (void) |
b9cecb91 AD |
81 | { |
82 | return EOF; | |
83 | } | |
84 | ||
85 | static void | |
b5b61c61 | 86 | my_error (const char *msg) |
b9cecb91 AD |
87 | { |
88 | fprintf (stderr, "%s\n", msg); | |
89 | } | |
90 | ||
91 | %} | |
92 | %% | |
93 | exp:; | |
94 | ]) | |
95 | ||
da730230 | 96 | AT_BISON_CHECK([--defines -o input.c input.y]) |
b9cecb91 | 97 | |
b5b61c61 | 98 | # YYLTYPE should be defined, and MY_LLOC declared. |
b9cecb91 AD |
99 | AT_DATA([caller.c], |
100 | [[#include "input.h" | |
b5b61c61 | 101 | YYLTYPE *my_llocp = &my_lloc; |
b9cecb91 | 102 | |
b5b61c61 | 103 | int my_parse (void); |
b9cecb91 AD |
104 | |
105 | int | |
106 | main (void) | |
107 | { | |
b5b61c61 | 108 | return my_parse (); |
b9cecb91 AD |
109 | } |
110 | ]]) | |
111 | ||
112 | # Link and execute, just to make sure everything is fine (and in | |
b5b61c61 | 113 | # particular, that MY_LLOC is indeed defined somewhere). |
91ce0b3a AD |
114 | AT_COMPILE([caller.o]) |
115 | AT_COMPILE([input.o]) | |
2b42986e | 116 | AT_COMPILE([caller], [caller.o input.o]) |
1154cced | 117 | AT_PARSER_CHECK([./caller]) |
b9cecb91 AD |
118 | |
119 | AT_CLEANUP | |
4b3847c3 AD |
120 | |
121 | ## ----------------- ## | |
122 | ## Several parsers. ## | |
123 | ## ----------------- ## | |
124 | ||
125 | AT_SETUP([Several parsers]) | |
126 | ||
ad60e80f AD |
127 | # AT_TEST([PREFIX], [DIRECTIVES]) |
128 | # ------------------------------- | |
3746fc33 AD |
129 | # Generate and compile to *.o. Make sure there is no (allowed) YY* |
130 | # nor yy* identifiers in the header. | |
ad60e80f | 131 | m4_pushdef([AT_TEST], |
4b3847c3 | 132 | [AT_BISON_OPTION_PUSHDEFS([%define api.prefix "$1_" $2]) |
1168b322 | 133 | AT_DATA_GRAMMAR([$1.AT_SKEL_CC_IF([yy], [y])], |
4b3847c3 AD |
134 | [[%define api.prefix "$1_" |
135 | $2 | |
ad60e80f | 136 | %error-verbose |
4b3847c3 AD |
137 | %union |
138 | { | |
139 | int integer; | |
140 | } | |
141 | %{ | |
142 | #include <stdio.h> | |
143 | ]AT_YYERROR_DECLARE[ | |
144 | ]AT_YYLEX_DECLARE[ | |
145 | %} | |
146 | %% | |
147 | exp: | |
148 | 'x' '1' { printf ("x1\n"); } | |
149 | | 'x' '2' { printf ("x2\n"); } | |
150 | | 'x' '3' { printf ("x3\n"); } | |
151 | | 'x' '4' { printf ("x4\n"); } | |
152 | | 'x' '5' { printf ("x5\n"); } | |
153 | | 'x' '6' { printf ("x6\n"); } | |
ad60e80f AD |
154 | | 'x' '7' { printf ("x7\n"); } |
155 | | 'x' '8' { printf ("x8\n"); } | |
4b3847c3 AD |
156 | ; |
157 | ||
158 | %% | |
159 | ]AT_YYERROR_DEFINE[ | |
160 | ]AT_YYLEX_DEFINE(["$1"])[ | |
161 | ]]) | |
162 | ||
163 | AT_BISON_CHECK([-d -o AT_SKEL_CC_IF([$1.cc $1.yy], [$1.c $1.y])]) | |
3746fc33 AD |
164 | |
165 | # Check there is no 'yy' left. | |
4b3847c3 AD |
166 | # C++ output relies on namespaces and still uses yy a lot. |
167 | AT_SKEL_CC_IF([], | |
faff3bef AD |
168 | [AT_CHECK([$EGREP yy $1.h], [1])]) |
169 | ||
ad60e80f AD |
170 | # Ignore comments. Ignore YYPARSE_PARAM (obsolete) and |
171 | # YYPUSH_MORE(_DEFINED)? (whose definition is constant). | |
172 | # | |
173 | # YYDEBUG (not renamed) can be read, but not changed. | |
faff3bef AD |
174 | AT_CHECK([[sed -ne 's,/\*[^*]*\*/,,g;s,//.*,,' \ |
175 | -e '/YY/p' ]$1.AT_SKEL_CC_IF([hh], [h])[ | | |
ad60e80f | 176 | $EGREP -wv 'YY(PARSE_PARAM|PUSH_MORE(_DEFINED)?)|(defined|if) YYDEBUG']], |
faff3bef | 177 | [1]) |
ad60e80f | 178 | |
3746fc33 | 179 | AT_LANG_COMPILE([$1.o]) |
ad60e80f AD |
180 | AT_CHECK([[echo "$1" >>expout]]) |
181 | ||
4b3847c3 | 182 | AT_BISON_OPTION_POPDEFS |
ad60e80f | 183 | ])# AT_TEST |
4b3847c3 AD |
184 | |
185 | AT_DATA([main.cc], | |
1168b322 | 186 | [AT_DATA_SOURCE_PROLOGUE |
0e98a81e AD |
187 | [// If we are compiling with CC=$CXX, then do not load the C headers |
188 | // inside extern "C", since they were _not_ compiled this way. | |
189 | #if ! CC_IS_CXX | |
190 | extern "C" | |
4b3847c3 | 191 | { |
0e98a81e | 192 | #endif |
4b3847c3 AD |
193 | #include "x1.h" |
194 | #include "x2.h" | |
195 | #include "x3.h" | |
196 | #include "x4.h" | |
ad60e80f AD |
197 | #include "x6.h" |
198 | #include "x7.h" | |
199 | #include "x8.h" | |
0e98a81e | 200 | #if ! CC_IS_CXX |
4b3847c3 | 201 | } |
0e98a81e | 202 | #endif |
4b3847c3 AD |
203 | #include "x5.hh" |
204 | //#include "x6.hh" | |
b142cfd1 | 205 | |
ad60e80f AD |
206 | #define RUN(S) \ |
207 | do { \ | |
208 | int res = S; \ | |
209 | if (res) \ | |
210 | std::cerr << #S": " << res << std::endl; \ | |
211 | } while (false) | |
1168b322 | 212 | |
4b3847c3 AD |
213 | int |
214 | main (void) | |
215 | { | |
ad60e80f AD |
216 | RUN(x1_parse()); |
217 | RUN(x2_parse()); | |
218 | RUN(x3_parse()); | |
219 | RUN(x4_parse()); | |
4b3847c3 | 220 | x5_::parser p5; |
ad60e80f AD |
221 | RUN(p5.parse()); |
222 | RUN(x6_parse()); | |
223 | RUN(x7_parse()); | |
224 | RUN(x8_parse()); | |
53ab797d | 225 | // x6_::parser p6; |
ad60e80f | 226 | // RUN(p6.parse()); |
b142cfd1 | 227 | return 0; |
4b3847c3 | 228 | } |
ad60e80f AD |
229 | ]])# main.cc |
230 | ||
231 | AT_TEST([x1], []) | |
232 | AT_TEST([x2], [%locations %debug]) | |
233 | AT_TEST([x3], [%glr-parser]) | |
234 | AT_TEST([x4], [%locations %debug %glr-parser]) | |
235 | AT_TEST([x5], [%locations %debug %language "c++"]) | |
236 | AT_TEST([x6], [%define api.pure]) | |
237 | AT_TEST([x7], [%define api.push-pull both]) | |
238 | AT_TEST([x8], [%define api.pure %define api.push-pull both]) | |
239 | #AT_TEST([x5], [%locations %language "c++" %glr-parser]) | |
240 | ||
0e98a81e | 241 | AT_COMPILE_CXX([parser], [[x[1-8].o -DCC_IS_CXX=$CC_IS_CXX main.cc]]) |
ad60e80f AD |
242 | AT_CHECK([./parser], [0], [[expout]]) |
243 | ||
244 | m4_popdef([AT_TEST]) | |
4b3847c3 AD |
245 | |
246 | AT_CLEANUP |