]> git.saurik.com Git - bison.git/blame - tests/headers.at
tests: reorder.
[bison.git] / tests / headers.at
CommitLineData
b9cecb91 1# Bison Parser Headers. -*- Autotest -*-
6e30ede8 2
c932d613 3# Copyright (C) 2001-2002, 2006-2007, 2009-2012 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
22## ---------------------- ##
23## %union and --defines. ##
24## ---------------------- ##
25
26
27AT_SETUP([%union and --defines])
28
29AT_DATA([input.y],
30[%union
31{
32 int integer;
33 char *string ;
34}
35%%
36exp: {};
37])
38
da730230 39AT_BISON_CHECK([--defines input.y])
b9cecb91
AD
40
41AT_CLEANUP
42
43
44
45## --------------------- ##
46## Invalid CPP headers. ##
47## --------------------- ##
48
9d67a52a
AD
49# AT_TEST_CPP_GUARD_H(BASE-NAME, [DIRECTIVES])
50# --------------------------------------------
51# FIXME: Much of this can be covered by calc.at.
b9cecb91 52m4_define([AT_TEST_CPP_GUARD_H],
9d67a52a 53[AT_SETUP([Invalid CPP guards: $2 --defines=$1.h])
b9cecb91
AD
54
55# Possibly create inner directories.
56dirname=`AS_DIRNAME([$1])`
57AS_MKDIR_P([$dirname])
58
9501dc6e 59AT_DATA_GRAMMAR([$1.y],
9d67a52a
AD
60[$2
61%{
fe6c2fde 62#include <$1.h>
4e26c69e
PE
63void yyerror (const char *);
64int yylex (void);
1d39f854
PE
65%}
66%%
bfcf1f3a 67dummy:;
1d39f854 68%%
fe6c2fde 69#include <$1.h>
b9cecb91
AD
70])
71
9d67a52a 72AT_BISON_CHECK([--defines=$1.h --output=$1.c $1.y])
b9cecb91 73
9d67a52a 74AT_COMPILE([$1.o], [-I. -c $1.c])
b9cecb91
AD
75
76AT_CLEANUP
77])
78
79AT_TEST_CPP_GUARD_H([input/input])
80AT_TEST_CPP_GUARD_H([9foo])
9d67a52a
AD
81AT_TEST_CPP_GUARD_H([input/input], [%glr-parser])
82AT_TEST_CPP_GUARD_H([9foo], [%glr-parser])
b9cecb91
AD
83
84
85
86## ---------------- ##
87## export YYLTYPE. ##
88## ---------------- ##
89
90
91AT_SETUP([export YYLTYPE])
92
9501dc6e 93AT_DATA_GRAMMAR([input.y],
b9cecb91 94[%locations
b5b61c61 95
02975b9a 96%name-prefix "my_"
b9cecb91
AD
97%{
98#include <stdio.h>
99#include <stdlib.h>
100
7172e23e 101static int
b5b61c61 102my_lex (void)
b9cecb91
AD
103{
104 return EOF;
105}
106
107static void
b5b61c61 108my_error (const char *msg)
b9cecb91
AD
109{
110 fprintf (stderr, "%s\n", msg);
111}
112
113%}
114%%
115exp:;
116])
117
da730230 118AT_BISON_CHECK([--defines -o input.c input.y])
b9cecb91 119
b5b61c61 120# YYLTYPE should be defined, and MY_LLOC declared.
b9cecb91
AD
121AT_DATA([caller.c],
122[[#include "input.h"
b5b61c61 123YYLTYPE *my_llocp = &my_lloc;
b9cecb91 124
b5b61c61 125int my_parse (void);
b9cecb91
AD
126
127int
128main (void)
129{
b5b61c61 130 return my_parse ();
b9cecb91
AD
131}
132]])
133
134# Link and execute, just to make sure everything is fine (and in
b5b61c61 135# particular, that MY_LLOC is indeed defined somewhere).
2b42986e
PE
136AT_COMPILE([caller.o], [-c caller.c])
137AT_COMPILE([input.o], [-c input.c])
138AT_COMPILE([caller], [caller.o input.o])
1154cced 139AT_PARSER_CHECK([./caller])
b9cecb91
AD
140
141AT_CLEANUP