1 # Bison Parser Headers. -*- Autotest -*-
3 # Copyright (C) 2001-2002, 2006-2007, 2009-2012 Free Software
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.
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.
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/>.
19 AT_BANNER([[Parser Headers.]])
22 ## --------------------- ##
23 ## Invalid CPP headers. ##
24 ## --------------------- ##
26 # AT_TEST_CPP_GUARD_H(BASE-NAME, [DIRECTIVES])
27 # --------------------------------------------
28 # FIXME: Much of this can be covered by calc.at.
29 m4_define([AT_TEST_CPP_GUARD_H],
30 [AT_SETUP([Invalid CPP guards: $2 --defines=$1.h])
31 AT_BISON_OPTION_PUSHDEFS([$2])
32 # Possibly create inner directories.
33 dirname=`AS_DIRNAME([$1])`
34 AS_MKDIR_P([$dirname])
36 AT_DATA_GRAMMAR([$1.y],
40 ]AT_YYERROR_DECLARE_EXTERN[
41 ]AT_YYLEX_DECLARE_EXTERN[
49 AT_BISON_CHECK([--defines=$1.h --output=$1.c $1.y])
51 AT_COMPILE([$1.o], [-I. -c $1.c])
53 AT_BISON_OPTION_POPDEFS
57 AT_TEST_CPP_GUARD_H([input/input])
58 AT_TEST_CPP_GUARD_H([9foo])
59 AT_TEST_CPP_GUARD_H([input/input], [%glr-parser])
60 AT_TEST_CPP_GUARD_H([9foo], [%glr-parser])
64 ## ---------------- ##
66 ## ---------------- ##
69 AT_SETUP([export YYLTYPE])
71 AT_DATA_GRAMMAR([input.y],
86 my_error (const char *msg)
88 fprintf (stderr, "%s\n", msg);
96 AT_BISON_CHECK([--defines -o input.c input.y])
98 # YYLTYPE should be defined, and MY_LLOC declared.
101 YYLTYPE *my_llocp = &my_lloc;
112 # Link and execute, just to make sure everything is fine (and in
113 # particular, that MY_LLOC is indeed defined somewhere).
114 AT_COMPILE([caller.o])
115 AT_COMPILE([input.o])
116 AT_COMPILE([caller], [caller.o input.o])
117 AT_PARSER_CHECK([./caller])