]> git.saurik.com Git - bison.git/blame - tests/headers.at
maint: run "make update-copyright"
[bison.git] / tests / headers.at
CommitLineData
b9cecb91 1# Bison Parser Headers. -*- Autotest -*-
e141f4d4
JD
2# Copyright (C) 2001-2002, 2006-2007, 2009-2010 Free Software
3# Foundation, Inc.
b9cecb91 4
f16b0819 5# This program is free software: you can redistribute it and/or modify
b9cecb91 6# it under the terms of the GNU General Public License as published by
f16b0819
PE
7# the Free Software Foundation, either version 3 of the License, or
8# (at your option) any later version.
9#
b9cecb91
AD
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
f16b0819 14#
b9cecb91 15# You should have received a copy of the GNU General Public License
f16b0819 16# along with this program. If not, see <http://www.gnu.org/licenses/>.
b9cecb91
AD
17
18AT_BANNER([[Parser Headers.]])
19
20
21## ---------------------- ##
22## %union and --defines. ##
23## ---------------------- ##
24
25
26AT_SETUP([%union and --defines])
27
28AT_DATA([input.y],
29[%union
30{
31 int integer;
32 char *string ;
33}
34%%
35exp: {};
36])
37
da730230 38AT_BISON_CHECK([--defines input.y])
b9cecb91
AD
39
40AT_CLEANUP
41
42
43
44## --------------------- ##
45## Invalid CPP headers. ##
46## --------------------- ##
47
48# AT_TEST_CPP_GUARD_H([INPUT-FILE-BASE)
49# -------------------------------------
50m4_define([AT_TEST_CPP_GUARD_H],
51[AT_SETUP([Invalid CPP guards: $1])
52
53# Possibly create inner directories.
54dirname=`AS_DIRNAME([$1])`
55AS_MKDIR_P([$dirname])
56
9501dc6e 57AT_DATA_GRAMMAR([$1.y],
1d39f854 58[%{
fe6c2fde 59#include <$1.h>
4e26c69e
PE
60void yyerror (const char *);
61int yylex (void);
1d39f854
PE
62%}
63%%
bfcf1f3a 64dummy:;
1d39f854 65%%
fe6c2fde 66#include <$1.h>
b9cecb91
AD
67])
68
da730230 69AT_BISON_CHECK([--defines=$1.h --output=y.tab.c $1.y])
b9cecb91 70
fe6c2fde 71AT_COMPILE([y.tab.o], [-I. -c y.tab.c])
b9cecb91
AD
72
73AT_CLEANUP
74])
75
76AT_TEST_CPP_GUARD_H([input/input])
77AT_TEST_CPP_GUARD_H([9foo])
78
79
80
81## ---------------- ##
82## export YYLTYPE. ##
83## ---------------- ##
84
85
86AT_SETUP([export YYLTYPE])
87
9501dc6e 88AT_DATA_GRAMMAR([input.y],
b9cecb91 89[%locations
b5b61c61 90
02975b9a 91%name-prefix "my_"
b9cecb91
AD
92%{
93#include <stdio.h>
94#include <stdlib.h>
95
7172e23e 96static int
b5b61c61 97my_lex (void)
b9cecb91
AD
98{
99 return EOF;
100}
101
102static void
b5b61c61 103my_error (const char *msg)
b9cecb91
AD
104{
105 fprintf (stderr, "%s\n", msg);
106}
107
108%}
109%%
110exp:;
111])
112
da730230 113AT_BISON_CHECK([--defines -o input.c input.y])
b9cecb91 114
b5b61c61 115# YYLTYPE should be defined, and MY_LLOC declared.
b9cecb91
AD
116AT_DATA([caller.c],
117[[#include "input.h"
b5b61c61 118YYLTYPE *my_llocp = &my_lloc;
b9cecb91 119
b5b61c61 120int my_parse (void);
b9cecb91
AD
121
122int
123main (void)
124{
b5b61c61 125 return my_parse ();
b9cecb91
AD
126}
127]])
128
129# Link and execute, just to make sure everything is fine (and in
b5b61c61 130# particular, that MY_LLOC is indeed defined somewhere).
2b42986e
PE
131AT_COMPILE([caller.o], [-c caller.c])
132AT_COMPILE([input.o], [-c input.c])
133AT_COMPILE([caller], [caller.o input.o])
1154cced 134AT_PARSER_CHECK([./caller])
b9cecb91
AD
135
136AT_CLEANUP