]>
Commit | Line | Data |
---|---|---|
9b2d0677 | 1 | # Checking the output filenames. -*- Autotest -*- |
6c35d22c | 2 | # Copyright (C) 2002 Free Software Foundation, Inc. |
9b2d0677 AD |
3 | |
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 2, or (at your option) | |
7 | # any later version. | |
8 | ||
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. | |
13 | ||
14 | # You should have received a copy of the GNU General Public License | |
15 | # along with this program; if not, write to the Free Software | |
16 | # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA | |
17 | # 02111-1307, USA. | |
18 | ||
19 | AT_BANNER([[Input Processing.]]) | |
20 | ||
21 | # Mostly test that we are robust to mistakes. | |
22 | ||
6c35d22c | 23 | |
9b2d0677 AD |
24 | ## ------------ ## |
25 | ## Invalid $n. ## | |
26 | ## ------------ ## | |
27 | ||
9b2d0677 AD |
28 | AT_SETUP([Invalid $n]) |
29 | ||
30 | AT_DATA([input.y], | |
31 | [[%% | |
bfcf1f3a | 32 | exp: { $$ = $1 ; }; |
9b2d0677 AD |
33 | ]]) |
34 | ||
35 | AT_CHECK([bison input.y], [1], [], | |
9906579f | 36 | [[input.y:2.6-14: integer out of range: `$1' |
9b2d0677 AD |
37 | ]]) |
38 | ||
39 | AT_CLEANUP | |
40 | ||
41 | ||
42 | ## ------------ ## | |
43 | ## Invalid @n. ## | |
44 | ## ------------ ## | |
45 | ||
9b2d0677 AD |
46 | AT_SETUP([Invalid @n]) |
47 | ||
48 | AT_DATA([input.y], | |
49 | [[%% | |
bfcf1f3a | 50 | exp: { @$ = @1 ; }; |
9b2d0677 AD |
51 | ]]) |
52 | ||
53 | AT_CHECK([bison input.y], [1], [], | |
9906579f | 54 | [[input.y:2.6-14: integer out of range: `@1' |
9b2d0677 AD |
55 | ]]) |
56 | ||
57 | AT_CLEANUP | |
9af3fbce AD |
58 | |
59 | ||
60 | ## -------------- ## | |
e776192e | 61 | ## Type Clashes. ## |
9af3fbce AD |
62 | ## -------------- ## |
63 | ||
e776192e | 64 | AT_SETUP([Type Clashes]) |
9af3fbce AD |
65 | |
66 | AT_DATA([input.y], | |
67 | [[%token foo | |
68 | %type <bar> exp | |
69 | %% | |
70 | exp: foo {} foo | |
71 | | foo | |
72 | | /* Empty. */ | |
73 | ; | |
74 | ]]) | |
75 | ||
76 | AT_CHECK([bison input.y], [1], [], | |
baa00b7f PE |
77 | [[input.y:4.4-15: type clash on default action: <bar> != <> |
78 | input.y:5.4-8: type clash on default action: <bar> != <> | |
e776192e | 79 | input.y:6.4: empty rule for typed nonterminal, and no action |
9af3fbce AD |
80 | ]]) |
81 | ||
82 | AT_CLEANUP | |
5a08f1ce AD |
83 | |
84 | ||
85 | ||
86 | ## ----------------------- ## | |
87 | ## Torturing the Scanner. ## | |
88 | ## ----------------------- ## | |
89 | ||
90 | # Be sure to compile and run, so that the C compiler checks what | |
91 | # we do. | |
92 | ||
93 | AT_SETUP([Torturing the Scanner]) | |
94 | ||
9501dc6e | 95 | AT_DATA_GRAMMAR([input.y], |
5a08f1ce AD |
96 | [[%{ |
97 | /* This is seen in GCC: a %{ and %} in middle of a comment. */ | |
98 | const char *foo = "So %{ and %} can be here too."; | |
99 | ||
dda7a53e PE |
100 | #if 0 |
101 | /* These examples test Bison while not stressing C compilers too much. | |
102 | Many C compilers mishandle backslash-newlines, so this part of the | |
103 | test is inside "#if 0". The comment and string are written so that | |
104 | the "#endif" will be seen regardless of the C compiler bugs that we | |
105 | know about, namely: | |
106 | ||
107 | HP C (as of late 2002) mishandles *\[newline]\[newline]/ within a | |
108 | comment. | |
109 | ||
110 | The Apple Darwin compiler (as of late 2002) mishandles | |
111 | \\[newline]' within a character constant. | |
112 | ||
113 | */ | |
114 | ||
206fe6a5 | 115 | /\ |
dda7a53e PE |
116 | * A comment with backslash-newlines in it. %} *\ |
117 | \ | |
206fe6a5 | 118 | / |
dda7a53e | 119 | /* { Close the above comment, if the C compiler mishandled it. */ |
206fe6a5 PE |
120 | |
121 | char str[] = "\\ | |
122 | " A string with backslash-newlines in it %{ %} \\ | |
dda7a53e | 123 | \ |
206fe6a5 PE |
124 | ""; |
125 | ||
dda7a53e | 126 | char apostrophe = '\''; |
206fe6a5 PE |
127 | #endif |
128 | ||
5a08f1ce AD |
129 | #include <stdio.h> |
130 | %} | |
131 | /* %{ and %} can be here too. */ | |
132 | ||
133 | %{ | |
134 | /* Exercise pre-prologue dependency to %union. */ | |
135 | typedef int value_t; | |
136 | %} | |
137 | ||
138 | /* Exercise M4 quoting: '@:>@@:>@', 0. */ | |
139 | ||
140 | /* Also exercise %union. */ | |
141 | %union | |
142 | { | |
143 | value_t ival; /* A comment to exercise an old bug. */ | |
144 | }; | |
145 | ||
146 | ||
147 | /* Exercise post-prologue dependency to %union. */ | |
148 | %{ | |
149 | static YYSTYPE value_t_as_yystype (value_t val); | |
150 | ||
151 | /* Exercise quotes in declarations. */ | |
152 | char quote[] = "@:>@@:>@,"; | |
153 | %} | |
154 | ||
155 | %{ | |
156 | static void yyerror (const char *s); | |
157 | static int yylex (void); | |
158 | %} | |
159 | ||
206fe6a5 | 160 | %type <ival> '@<:@' |
5a08f1ce AD |
161 | |
162 | /* Exercise quotes in strings. */ | |
206fe6a5 | 163 | %token FAKE "fake @<:@@:>@ \a\b\f\n\r\t\v\"\'\?\\\u005B\U0000005c ??!??'??(??)??-??/??<??=??> \x0\0" |
5a08f1ce AD |
164 | |
165 | %% | |
206fe6a5 | 166 | /* Exercise M4 quoting: '@:>@@:>@', @<:@, 1. */ |
5b7f88c7 | 167 | exp: '@<:@' '\1' two '$' '@' '{' oline output |
5a08f1ce AD |
168 | { |
169 | /* Exercise quotes in braces. */ | |
170 | char tmp[] = "@<:@%c@:>@,\n"; | |
171 | printf (tmp, $1); | |
172 | } | |
173 | ; | |
5b7f88c7 PE |
174 | |
175 | two: '\x000000000000000000000000000000000000000000000000000000000000000000002'; | |
176 | oline: '@' 'o' 'l' 'i' 'n' 'e' '@' '_' '_' 'o' 'l' 'i' 'n' 'e' '_' '_'; | |
177 | output: '#' 'o' 'u' 't' 'p' 'u' 't' ' '; | |
5a08f1ce | 178 | %% |
206fe6a5 | 179 | /* Exercise M4 quoting: '@:>@@:>@', @<:@, 2. */ |
5a08f1ce AD |
180 | |
181 | static YYSTYPE | |
182 | value_t_as_yystype (value_t val) | |
183 | { | |
184 | YYSTYPE res; | |
185 | res.ival = val; | |
186 | return res; | |
187 | } | |
188 | ||
189 | static int | |
190 | yylex (void) | |
191 | { | |
5b7f88c7 PE |
192 | static const char *input = "@<:@\1\2$@{@oline@__@&t@oline__\ |
193 | #output "; /* " | |
194 | */ | |
5a08f1ce AD |
195 | yylval = value_t_as_yystype (*input); |
196 | return *input++; | |
197 | } | |
198 | ||
199 | static void | |
200 | yyerror (const char *msg) | |
201 | { | |
202 | fprintf (stderr, "%s\n", msg); | |
203 | } | |
204 | ]]) | |
205 | ||
9501dc6e AD |
206 | # Pacify Emacs'font-lock-mode: " |
207 | ||
5a08f1ce AD |
208 | AT_DATA([main.c], |
209 | [[typedef int value_t; | |
210 | #include "input.h" | |
211 | ||
212 | int yyparse (void); | |
213 | ||
214 | int | |
215 | main (void) | |
216 | { | |
217 | return yyparse (); | |
218 | } | |
219 | ]]) | |
220 | ||
b56471a6 | 221 | AT_CHECK([bison -d -v -o input.c input.y]) |
efc6bf1b PE |
222 | AT_COMPILE([input.o], [-c input.c]) |
223 | AT_COMPILE([main.o], [-c main.c]) | |
224 | AT_COMPILE([input], [input.o main.o]) | |
1154cced | 225 | AT_PARSER_CHECK([./input], 0, |
206fe6a5 | 226 | [[[@<:@], |
5a08f1ce AD |
227 | ]]) |
228 | ||
229 | AT_CLEANUP |