]>
Commit | Line | Data |
---|---|---|
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 | |
18 | AT_BANNER([[Parser Headers.]]) | |
19 | ||
20 | ||
21 | ## ---------------------- ## | |
22 | ## %union and --defines. ## | |
23 | ## ---------------------- ## | |
24 | ||
25 | ||
26 | AT_SETUP([%union and --defines]) | |
27 | ||
28 | AT_DATA([input.y], | |
29 | [%union | |
30 | { | |
31 | int integer; | |
32 | char *string ; | |
33 | } | |
34 | %% | |
35 | exp: {}; | |
36 | ]) | |
37 | ||
da730230 | 38 | AT_BISON_CHECK([--defines input.y]) |
b9cecb91 AD |
39 | |
40 | AT_CLEANUP | |
41 | ||
42 | ||
43 | ||
44 | ## --------------------- ## | |
45 | ## Invalid CPP headers. ## | |
46 | ## --------------------- ## | |
47 | ||
48 | # AT_TEST_CPP_GUARD_H([INPUT-FILE-BASE) | |
49 | # ------------------------------------- | |
50 | m4_define([AT_TEST_CPP_GUARD_H], | |
51 | [AT_SETUP([Invalid CPP guards: $1]) | |
52 | ||
53 | # Possibly create inner directories. | |
54 | dirname=`AS_DIRNAME([$1])` | |
55 | AS_MKDIR_P([$dirname]) | |
56 | ||
9501dc6e | 57 | AT_DATA_GRAMMAR([$1.y], |
1d39f854 | 58 | [%{ |
fe6c2fde | 59 | #include <$1.h> |
4e26c69e PE |
60 | void yyerror (const char *); |
61 | int yylex (void); | |
1d39f854 PE |
62 | %} |
63 | %% | |
bfcf1f3a | 64 | dummy:; |
1d39f854 | 65 | %% |
fe6c2fde | 66 | #include <$1.h> |
b9cecb91 AD |
67 | ]) |
68 | ||
da730230 | 69 | AT_BISON_CHECK([--defines=$1.h --output=y.tab.c $1.y]) |
b9cecb91 | 70 | |
fe6c2fde | 71 | AT_COMPILE([y.tab.o], [-I. -c y.tab.c]) |
b9cecb91 AD |
72 | |
73 | AT_CLEANUP | |
74 | ]) | |
75 | ||
76 | AT_TEST_CPP_GUARD_H([input/input]) | |
77 | AT_TEST_CPP_GUARD_H([9foo]) | |
78 | ||
79 | ||
80 | ||
81 | ## ---------------- ## | |
82 | ## export YYLTYPE. ## | |
83 | ## ---------------- ## | |
84 | ||
85 | ||
86 | AT_SETUP([export YYLTYPE]) | |
87 | ||
9501dc6e | 88 | AT_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 | 96 | static int |
b5b61c61 | 97 | my_lex (void) |
b9cecb91 AD |
98 | { |
99 | return EOF; | |
100 | } | |
101 | ||
102 | static void | |
b5b61c61 | 103 | my_error (const char *msg) |
b9cecb91 AD |
104 | { |
105 | fprintf (stderr, "%s\n", msg); | |
106 | } | |
107 | ||
108 | %} | |
109 | %% | |
110 | exp:; | |
111 | ]) | |
112 | ||
da730230 | 113 | AT_BISON_CHECK([--defines -o input.c input.y]) |
b9cecb91 | 114 | |
b5b61c61 | 115 | # YYLTYPE should be defined, and MY_LLOC declared. |
b9cecb91 AD |
116 | AT_DATA([caller.c], |
117 | [[#include "input.h" | |
b5b61c61 | 118 | YYLTYPE *my_llocp = &my_lloc; |
b9cecb91 | 119 | |
b5b61c61 | 120 | int my_parse (void); |
b9cecb91 AD |
121 | |
122 | int | |
123 | main (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 |
131 | AT_COMPILE([caller.o], [-c caller.c]) |
132 | AT_COMPILE([input.o], [-c input.c]) | |
133 | AT_COMPILE([caller], [caller.o input.o]) | |
1154cced | 134 | AT_PARSER_CHECK([./caller]) |
b9cecb91 AD |
135 | |
136 | AT_CLEANUP |