1 # Checking the Bison scanner. -*- Autotest -*-
2 # Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
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)
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.
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., 51 Franklin Street, Fifth Floor, Boston, MA
19 AT_BANNER([[Input Processing.]])
21 # Mostly test that we are robust to mistakes.
28 AT_SETUP([Invalid dollar-n])
35 AT_CHECK([bison input.y], [1], [],
36 [[input.y:2.13-14: integer out of range: `$1'
46 AT_SETUP([Invalid @n])
53 AT_CHECK([bison input.y], [1], [],
54 [[input.y:2.13-14: integer out of range: `@1'
64 AT_SETUP([Type Clashes])
76 AT_CHECK([bison input.y], [], [],
77 [[input.y:4.6-15: warning: type clash on default action: <bar> != <>
78 input.y:5.6-8: warning: type clash on default action: <bar> != <>
79 input.y:6.5: warning: empty rule for typed nonterminal, and no action
85 ## ---------------------- ##
86 ## Incompatible Aliases. ##
87 ## ---------------------- ##
89 AT_SETUP([Incompatible Aliases])
101 %destructor {baz} "foo"
108 AT_CHECK([bison input.y], [1], [],
109 [[input.y:8.7-11: %type redeclaration for foo
110 input.y:3.7-11: first declaration
111 input.y:10.13-17: %destructor redeclaration for foo
112 input.y:5.13-17: first declaration
113 input.y:9.19-23: %printer redeclaration for foo
114 input.y:10.13-17: first declaration
115 input.y:11.1-5: %left redeclaration for foo
116 input.y:6.1-5: first declaration
123 ## ----------------------- ##
124 ## Torturing the Scanner. ##
125 ## ----------------------- ##
127 # Be sure to compile and run, so that the C compiler checks what
130 AT_SETUP([Torturing the Scanner])
133 AT_DATA([input.y], [])
134 AT_CHECK([bison input.y], [1], [],
135 [[input.y:1.1: syntax error, unexpected end of file
139 AT_DATA_GRAMMAR([input.y],
141 /* This is seen in GCC: a %{ and %} in middle of a comment. */
142 const char *foo = "So %{ and %} can be here too.";
145 /* These examples test Bison while not stressing C compilers too much.
146 Many C compilers mishandle backslash-newlines, so this part of the
147 test is inside "#if 0". The comment and string are written so that
148 the "#endif" will be seen regardless of the C compiler bugs that we
151 HP C (as of late 2002) mishandles *\[newline]\[newline]/ within a
154 The Apple Darwin compiler (as of late 2002) mishandles
155 \\[newline]' within a character constant.
160 * A comment with backslash-newlines in it. %} *\
163 /* { Close the above comment, if the C compiler mishandled it. */
166 " A string with backslash-newlines in it %{ %} \\
170 char apostrophe = '\'';
175 /* %{ and %} can be here too. */
178 /* Exercise pre-prologue dependency to %union. */
182 /* Exercise M4 quoting: '@:>@@:>@', 0. */
184 /* Also exercise %union. */
187 value ival; /* A comment to exercise an old bug. */
191 /* Exercise post-prologue dependency to %union. */
193 static YYSTYPE value_as_yystype (value val);
195 /* Exercise quotes in declarations. */
196 char quote[] = "@:>@@:>@,";
200 static void yyerror (const char *s);
201 static int yylex (void);
206 /* Exercise quotes in strings. */
207 %token FAKE "fake @<:@@:>@ \a\b\f\n\r\t\v\"\'\?\\\u005B\U0000005c ??!??'??(??)??-??/??<??=??> \x1\1"
210 /* Exercise M4 quoting: '@:>@@:>@', @<:@, 1. */
211 exp: '@<:@' '\1' two '$' '@' '{' oline output.or.oline.opt
213 /* Exercise quotes in braces. */
214 char tmp[] = "@<:@%c@:>@,\n";
219 two: '\x000000000000000000000000000000000000000000000000000000000000000000002';
220 oline: '@' 'o' 'l' 'i' 'n' 'e' '@' '_' '_' 'o' 'l' 'i' 'n' 'e' '_' '_';
221 output.or.oline.opt: ;|oline;;|output;;;
222 output: '#' 'o' 'u' 't' 'p' 'u' 't' ' ';
224 /* Exercise M4 quoting: '@:>@@:>@', @<:@, 2. */
227 value_as_yystype (value val)
237 static const char *input = "@<:@\1\2$@{@oline@__@&t@oline__\
240 yylval = value_as_yystype (*input);
245 yyerror (const char *msg)
247 fprintf (stderr, "%s\n", msg);
251 # Pacify Emacs'font-lock-mode: "
266 AT_CHECK([bison -d -v -o input.c input.y])
267 AT_COMPILE([input.o], [-c input.c])
268 AT_COMPILE([main.o], [-c main.c])
269 AT_COMPILE([input], [input.o main.o])
270 AT_PARSER_CHECK([./input], 0,
277 ## ---------------------- ##
278 ## Typed symbol aliases. ##
279 ## ---------------------- ##
281 AT_SETUP([Typed symbol aliases])
283 # Bison 2.0 broke typed symbol aliases - ensure they work.
285 AT_DATA_GRAMMAR([input.y],
290 %token <val> MY_TOKEN "MY TOKEN"
297 AT_CHECK([bison -o input.c input.y])
306 m4_define([AT_CHECK_REQUIRE],
307 [AT_SETUP([Require $1])
308 AT_DATA_GRAMMAR([input.y],
313 AT_CHECK([bison -o input.c input.y], $2, [], ignore)
317 AT_CHECK_REQUIRE(1.0, 0)
318 AT_CHECK_REQUIRE(AT_PACKAGE_VERSION, 0)
319 ## FIXME: Some day augment this version number.
320 AT_CHECK_REQUIRE(100.0, 63)