]> git.saurik.com Git - bison.git/blame_incremental - tests/headers.at
Merge remote-tracking branch 'origin/maint'
[bison.git] / tests / headers.at
... / ...
CommitLineData
1# Bison Parser Headers. -*- Autotest -*-
2
3# Copyright (C) 2001-2002, 2006-2007, 2009-2012 Free Software
4# Foundation, Inc.
5
6# This program is free software: you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation, either version 3 of the License, or
9# (at your option) any later version.
10#
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.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program. If not, see <http://www.gnu.org/licenses/>.
18
19AT_BANNER([[Parser Headers.]])
20
21
22## --------------------- ##
23## Invalid CPP headers. ##
24## --------------------- ##
25
26# AT_TEST_CPP_GUARD_H(BASE-NAME, [DIRECTIVES])
27# --------------------------------------------
28# FIXME: Much of this can be covered by calc.at.
29m4_define([AT_TEST_CPP_GUARD_H],
30[AT_SETUP([Invalid CPP guards: $2 --defines=$1.h])
31AT_BISON_OPTION_PUSHDEFS([$2])
32# Possibly create inner directories.
33dirname=`AS_DIRNAME([$1])`
34AS_MKDIR_P([$dirname])
35
36AT_DATA_GRAMMAR([$1.y],
37[$2
38%{
39#include <$1.h>
40]AT_YYERROR_DECLARE_EXTERN[
41]AT_YYLEX_DECLARE_EXTERN[
42%}
43%%
44dummy:;
45%%
46#include <$1.h>
47])
48
49AT_BISON_CHECK([--defines=$1.h --output=$1.c $1.y])
50
51AT_COMPILE([$1.o], [-I. -c $1.c])
52
53AT_BISON_OPTION_POPDEFS
54AT_CLEANUP
55])
56
57AT_TEST_CPP_GUARD_H([input/input])
58AT_TEST_CPP_GUARD_H([9foo])
59AT_TEST_CPP_GUARD_H([input/input], [%glr-parser])
60AT_TEST_CPP_GUARD_H([9foo], [%glr-parser])
61
62
63
64## ---------------- ##
65## export YYLTYPE. ##
66## ---------------- ##
67
68
69AT_SETUP([export YYLTYPE])
70
71AT_DATA_GRAMMAR([input.y],
72[%locations
73
74%name-prefix "my_"
75%{
76#include <stdio.h>
77#include <stdlib.h>
78
79static int
80my_lex (void)
81{
82 return EOF;
83}
84
85static void
86my_error (const char *msg)
87{
88 fprintf (stderr, "%s\n", msg);
89}
90
91%}
92%%
93exp:;
94])
95
96AT_BISON_CHECK([--defines -o input.c input.y])
97
98# YYLTYPE should be defined, and MY_LLOC declared.
99AT_DATA([caller.c],
100[[#include "input.h"
101YYLTYPE *my_llocp = &my_lloc;
102
103int my_parse (void);
104
105int
106main (void)
107{
108 return my_parse ();
109}
110]])
111
112# Link and execute, just to make sure everything is fine (and in
113# particular, that MY_LLOC is indeed defined somewhere).
114AT_COMPILE([caller.o])
115AT_COMPILE([input.o])
116AT_COMPILE([caller], [caller.o input.o])
117AT_PARSER_CHECK([./caller])
118
119AT_CLEANUP
120
121## ----------------- ##
122## Several parsers. ##
123## ----------------- ##
124
125AT_SETUP([Several parsers])
126
127# AT_DATA_GRAMMAR_SEVERAL([PREFIX], [DIRECTIVES])
128# -----------------------------------------------
129# Generate and compile to *.o. Make sure there is no YY* nor yy* in
130# the header (but YYDEBUG and YYPARSE_PARAM).
131m4_define([AT_DATA_GRAMMAR_SEVERAL],
132[AT_BISON_OPTION_PUSHDEFS([%define api.prefix "$1_" $2])
133AT_DATA_GRAMMAR([$1.AT_SKEL_CC_IF([yy], [y])],
134[[%define api.prefix "$1_"
135$2
136%union
137{
138 int integer;
139}
140%{
141#include <stdio.h>
142 ]AT_YYERROR_DECLARE[
143 ]AT_YYLEX_DECLARE[
144%}
145%%
146exp:
147 'x' '1' { printf ("x1\n"); }
148| 'x' '2' { printf ("x2\n"); }
149| 'x' '3' { printf ("x3\n"); }
150| 'x' '4' { printf ("x4\n"); }
151| 'x' '5' { printf ("x5\n"); }
152| 'x' '6' { printf ("x6\n"); }
153;
154
155%%
156]AT_YYERROR_DEFINE[
157]AT_YYLEX_DEFINE(["$1"])[
158]])
159
160AT_BISON_CHECK([-d -o AT_SKEL_CC_IF([$1.cc $1.yy], [$1.c $1.y])])
161# C++ output relies on namespaces and still uses yy a lot.
162AT_SKEL_CC_IF([],
163 [AT_CHECK([$EGREP yy $1.h], [1])])
164
165# Ignore comments. Ignore YYPARSE_PARAM. YYDEBUG (not renamed) can be
166# read, but not changed.
167AT_CHECK([[$PERL -0777 -e 's{/\*.*?\*/}{}sg;s,//.*,,;' \
168 ]$1.AT_SKEL_CC_IF([hh], [h])[ |
169 grep 'YY' |
170 $EGREP -wv '(YYPARSE_PARAM|defined YYDEBUG|if YYDEBUG)']],
171 [1])
172AT_LANG_COMPILE([$1.o])
173AT_BISON_OPTION_POPDEFS
174])
175
176AT_DATA([main.cc],
177[AT_DATA_SOURCE_PROLOGUE
178[extern "C"
179{
180 #include "x1.h"
181 #include "x2.h"
182 #include "x3.h"
183 #include "x4.h"
184}
185#include "x5.hh"
186//#include "x6.hh"
187
188#define ECHO(S) std::cerr << #S": " << S << std::endl;
189
190int
191main (void)
192{
193 ECHO(x1_parse());
194 ECHO(x2_parse());
195 ECHO(x3_parse());
196 ECHO(x4_parse());
197 x5_::parser p5;
198 ECHO(p5.parse());
199// x6_::parser p6;
200// ECHO(p6.parse());
201 return 0;
202}
203]])
204
205AT_DATA_GRAMMAR_SEVERAL([x1], [])
206AT_DATA_GRAMMAR_SEVERAL([x2], [%locations %debug])
207AT_DATA_GRAMMAR_SEVERAL([x3], [%glr-parser])
208AT_DATA_GRAMMAR_SEVERAL([x4], [%locations %debug %glr-parser])
209AT_DATA_GRAMMAR_SEVERAL([x5], [%locations %debug %language "c++"])
210#AT_DATA_GRAMMAR_SEVERAL([x5], [%locations %language "c++" %glr-parser])
211
212AT_COMPILE_CXX([parser], [x1.o x2.o x3.o x4.o x5.o main.cc])
213AT_CHECK([./parser], [0],
214[[x1
215x2
216x3
217x4
218x5
219]],
220[[x1_parse(): 0
221x2_parse(): 0
222x3_parse(): 0
223x4_parse(): 0
224p5.parse(): 0
225]])
226
227AT_CLEANUP