]> git.saurik.com Git - bison.git/blame - tests/headers.at
tests: highlight empty right-hand sides
[bison.git] / tests / headers.at
CommitLineData
b9cecb91 1# Bison Parser Headers. -*- Autotest -*-
6e30ede8 2
7d6bad19 3# Copyright (C) 2001-2002, 2006-2007, 2009-2013 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
19AT_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 29m4_define([AT_TEST_CPP_GUARD_H],
9d67a52a 30[AT_SETUP([Invalid CPP guards: $2 --defines=$1.h])
55f48c48 31AT_BISON_OPTION_PUSHDEFS([$2])
b9cecb91
AD
32# Possibly create inner directories.
33dirname=`AS_DIRNAME([$1])`
34AS_MKDIR_P([$dirname])
35
9501dc6e 36AT_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%%
c7442984 44dummy: /* empty */;
1d39f854 45%%
fe6c2fde 46#include <$1.h>
b9cecb91
AD
47])
48
9d67a52a 49AT_BISON_CHECK([--defines=$1.h --output=$1.c $1.y])
b9cecb91 50
9d67a52a 51AT_COMPILE([$1.o], [-I. -c $1.c])
b9cecb91 52
55f48c48 53AT_BISON_OPTION_POPDEFS
b9cecb91
AD
54AT_CLEANUP
55])
56
57AT_TEST_CPP_GUARD_H([input/input])
58AT_TEST_CPP_GUARD_H([9foo])
9d67a52a
AD
59AT_TEST_CPP_GUARD_H([input/input], [%glr-parser])
60AT_TEST_CPP_GUARD_H([9foo], [%glr-parser])
b9cecb91
AD
61
62
63
64## ---------------- ##
65## export YYLTYPE. ##
66## ---------------- ##
67
68
69AT_SETUP([export YYLTYPE])
70
56b91ae0 71AT_BISON_OPTION_PUSHDEFS([%name-prefix "my_"])
9501dc6e 72AT_DATA_GRAMMAR([input.y],
56b91ae0 73[[%locations
b5b61c61 74
02975b9a 75%name-prefix "my_"
b9cecb91
AD
76%{
77#include <stdio.h>
78#include <stdlib.h>
79
56b91ae0
AD
80]AT_YYERROR_DEFINE[
81]AT_YYLEX_DEFINE[
b9cecb91
AD
82%}
83%%
c7442984 84exp: /* empty */;
56b91ae0 85]])
b9cecb91 86
da730230 87AT_BISON_CHECK([--defines -o input.c input.y])
b9cecb91 88
b5b61c61 89# YYLTYPE should be defined, and MY_LLOC declared.
b9cecb91
AD
90AT_DATA([caller.c],
91[[#include "input.h"
b5b61c61 92YYLTYPE *my_llocp = &my_lloc;
b9cecb91 93
b5b61c61 94int my_parse (void);
b9cecb91 95
56b91ae0 96]AT_MAIN_DEFINE[
b9cecb91
AD
97]])
98
99# Link and execute, just to make sure everything is fine (and in
b5b61c61 100# particular, that MY_LLOC is indeed defined somewhere).
91ce0b3a
AD
101AT_COMPILE([caller.o])
102AT_COMPILE([input.o])
2b42986e 103AT_COMPILE([caller], [caller.o input.o])
1154cced 104AT_PARSER_CHECK([./caller])
56b91ae0 105AT_BISON_OPTION_POPDEFS
b9cecb91 106AT_CLEANUP
4b3847c3
AD
107
108## ----------------- ##
109## Several parsers. ##
110## ----------------- ##
111
112AT_SETUP([Several parsers])
113
ad60e80f
AD
114# AT_TEST([PREFIX], [DIRECTIVES])
115# -------------------------------
5a05f42e 116# Generate and compile to *.o. Make sure there is no (allowed) YY*
04a4684a
AD
117# nor yy* identifiers in the header. Check that headers are
118# self-contained, and can be compiled by a C++ compiler.
ad60e80f 119m4_pushdef([AT_TEST],
4b3847c3 120[AT_BISON_OPTION_PUSHDEFS([%define api.prefix "$1_" $2])
d74d8cb6 121AT_DATA_GRAMMAR([$1.y],
4b3847c3
AD
122[[%define api.prefix "$1_"
123$2
ad60e80f 124%error-verbose
4b3847c3
AD
125%union
126{
127 int integer;
128}
129%{
130#include <stdio.h>
131 ]AT_YYERROR_DECLARE[
132 ]AT_YYLEX_DECLARE[
133%}
134%%
135exp:
136 'x' '1' { printf ("x1\n"); }
137| 'x' '2' { printf ("x2\n"); }
138| 'x' '3' { printf ("x3\n"); }
139| 'x' '4' { printf ("x4\n"); }
140| 'x' '5' { printf ("x5\n"); }
141| 'x' '6' { printf ("x6\n"); }
ad60e80f
AD
142| 'x' '7' { printf ("x7\n"); }
143| 'x' '8' { printf ("x8\n"); }
4b3847c3
AD
144;
145
146%%
147]AT_YYERROR_DEFINE[
148]AT_YYLEX_DEFINE(["$1"])[
149]])
150
d74d8cb6 151AT_BISON_CHECK([-d -o $1.AT_SKEL_CC_IF([cc], [c]) $1.y])
5a05f42e 152
5a05f42e 153AT_LANG_COMPILE([$1.o])
ad60e80f
AD
154AT_CHECK([[echo "$1" >>expout]])
155
4b3847c3 156AT_BISON_OPTION_POPDEFS
ad60e80f 157])# AT_TEST
4b3847c3
AD
158
159AT_DATA([main.cc],
1168b322 160[AT_DATA_SOURCE_PROLOGUE
0e98a81e
AD
161[// If we are compiling with CC=$CXX, then do not load the C headers
162// inside extern "C", since they were _not_ compiled this way.
163#if ! CC_IS_CXX
164extern "C"
4b3847c3 165{
0e98a81e 166#endif
4b3847c3
AD
167 #include "x1.h"
168 #include "x2.h"
169 #include "x3.h"
170 #include "x4.h"
ad60e80f
AD
171 #include "x6.h"
172 #include "x7.h"
173 #include "x8.h"
0e98a81e 174#if ! CC_IS_CXX
4b3847c3 175}
0e98a81e 176#endif
4b3847c3
AD
177#include "x5.hh"
178//#include "x6.hh"
b142cfd1 179
ad60e80f
AD
180#define RUN(S) \
181 do { \
182 int res = S; \
183 if (res) \
184 std::cerr << #S": " << res << std::endl; \
185 } while (false)
1168b322 186
4b3847c3
AD
187int
188main (void)
189{
ad60e80f
AD
190 RUN(x1_parse());
191 RUN(x2_parse());
192 RUN(x3_parse());
193 RUN(x4_parse());
4b3847c3 194 x5_::parser p5;
ad60e80f
AD
195 RUN(p5.parse());
196 RUN(x6_parse());
197 RUN(x7_parse());
198 RUN(x8_parse());
53ab797d 199// x6_::parser p6;
ad60e80f 200// RUN(p6.parse());
b142cfd1 201 return 0;
4b3847c3 202}
ad60e80f
AD
203]])# main.cc
204
205AT_TEST([x1], [])
206AT_TEST([x2], [%locations %debug])
207AT_TEST([x3], [%glr-parser])
208AT_TEST([x4], [%locations %debug %glr-parser])
209AT_TEST([x5], [%locations %debug %language "c++"])
210AT_TEST([x6], [%define api.pure])
211AT_TEST([x7], [%define api.push-pull both])
212AT_TEST([x8], [%define api.pure %define api.push-pull both])
213#AT_TEST([x5], [%locations %language "c++" %glr-parser])
214
3a526f5c
AD
215# Check there is no 'yy' left.
216# C++ output relies on namespaces and still uses yy a lot.
217#
218# Check there is no 'YY' left.
be27db79
TR
219# Ignore comments, YYChar (template parameter), YYPUSH_MORE(_DEFINED)?
220# (constant definition), YY_\w+_INCLUDED (header guards).
3a526f5c
AD
221# YYDEBUG (not renamed) can be read, but not changed.
222AT_CHECK([[$PERL -n -0777 -e '
223 s{/\*.*?\*/}{}gs;
224 s{//.*}{}g;
7ae57e2a 225 s{\b(YYChar
3a526f5c
AD
226 |YYPUSH_MORE(_DEFINED)?
227 |YY_\w+_INCLUDED
228 |YY_NULL
229 |(defined|if)\ YYDEBUG
230 )\b}{}gx;
231 while (/^(.*YY.*)$/gm)
232 {
7ae57e2a 233 print "$ARGV: invalid exported YY: $1\n";
3a526f5c
AD
234 }
235 if ($ARGV =~ /\.h$/)
236 {
237 while (/^(.*yy.*)$/gm)
238 {
7ae57e2a 239 print "$ARGV: invalid exported yy: $1\n";
3a526f5c
AD
240 }
241 }
242' -- *.hh *.h]])
243
04a4684a
AD
244# Check that the headers are self-contained, and protected against
245# multiple inclusions. While at it, check they are sane for C++.
246for h in *.h *.hh
247do
248 # No shell expansion with AT_DATA.
249 cat >$h.cc <<EOF
ec78bdab 250AT_DATA_SOURCE_PROLOGUE
04a4684a
AD
251#include "$h"
252#include "$h"
253EOF
254 AT_COMPILE_CXX([$h.o])
255done
256
8aaa0c2f
AD
257# Do this late, so that other checks have been performed.
258AT_SKIP_IF_CANNOT_LINK_C_AND_CXX
259
260AT_COMPILE_CXX([parser], [[x[1-8].o -DCC_IS_CXX=$CC_IS_CXX main.cc]])
2bb8f621 261AT_PARSER_CHECK([./parser], [0], [[expout]])
8aaa0c2f 262
ad60e80f 263m4_popdef([AT_TEST])
4b3847c3
AD
264
265AT_CLEANUP