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