1 # Bison Parser Headers. -*- Autotest -*-
2 # Copyright (C) 2001, 2002, 2006, 2007 Free Software Foundation, Inc.
4 # This program is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation, either version 3 of the License, or
7 # (at your option) any later version.
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.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17 AT_BANNER([[Parser Headers.]])
20 ## ---------------------- ##
21 ## %union and --defines. ##
22 ## ---------------------- ##
25 AT_SETUP([%union and --defines])
37 AT_BISON_CHECK([--defines input.y])
43 ## --------------------- ##
44 ## Invalid CPP headers. ##
45 ## --------------------- ##
47 # AT_TEST_CPP_GUARD_H([INPUT-FILE-BASE)
48 # -------------------------------------
49 m4_define([AT_TEST_CPP_GUARD_H],
50 [AT_SETUP([Invalid CPP guards: $1])
52 # Possibly create inner directories.
53 dirname=`AS_DIRNAME([$1])`
54 AS_MKDIR_P([$dirname])
56 AT_DATA_GRAMMAR([$1.y],
59 void yyerror (const char *);
68 AT_BISON_CHECK([--defines=$1.h --output=y.tab.c $1.y])
70 AT_COMPILE([y.tab.o], [-I. -c y.tab.c])
75 AT_TEST_CPP_GUARD_H([input/input])
76 AT_TEST_CPP_GUARD_H([9foo])
80 ## ---------------- ##
82 ## ---------------- ##
85 AT_SETUP([export YYLTYPE])
87 AT_DATA_GRAMMAR([input.y],
102 my_error (const char *msg)
104 fprintf (stderr, "%s\n", msg);
112 AT_BISON_CHECK([--defines -o input.c input.y])
114 # YYLTYPE should be defined, and MY_LLOC declared.
117 YYLTYPE *my_llocp = &my_lloc;
128 # Link and execute, just to make sure everything is fine (and in
129 # particular, that MY_LLOC is indeed defined somewhere).
130 AT_COMPILE([caller.o], [-c caller.c])
131 AT_COMPILE([input.o], [-c input.c])
132 AT_COMPILE([caller], [caller.o input.o])
133 AT_PARSER_CHECK([./caller])