1 # Checking the output filenames. -*- Autotest -*-
2 # Copyright (C) 2002 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., 59 Temple Place - Suite 330, Boston, MA
19 AT_BANNER([[Input Processing.]])
21 # Mostly test that we are robust to mistakes.
28 AT_SETUP([Invalid $n])
35 AT_CHECK([bison input.y], [1], [],
36 [[input.y:2.6-14: integer out of range: `$1'
46 AT_SETUP([Invalid @n])
53 AT_CHECK([bison input.y], [1], [],
54 [[input.y:2.6-14: integer out of range: `@1'
64 AT_SETUP([Type Clashes])
76 AT_CHECK([bison input.y], [1], [],
77 [[input.y:4.4-15: type clash on default action: <bar> != <>
78 input.y:5.4-8: type clash on default action: <bar> != <>
79 input.y:6.4: empty rule for typed nonterminal, and no action
86 ## ----------------------- ##
87 ## Torturing the Scanner. ##
88 ## ----------------------- ##
90 # Be sure to compile and run, so that the C compiler checks what
93 AT_SETUP([Torturing the Scanner])
95 AT_DATA_GRAMMAR([input.y],
97 /* This is seen in GCC: a %{ and %} in middle of a comment. */
98 const char *foo = "So %{ and %} can be here too.";
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
107 HP C (as of late 2002) mishandles *\[newline]\[newline]/ within a
110 The Apple Darwin compiler (as of late 2002) mishandles
111 \\[newline]' within a character constant.
116 * A comment with backslash-newlines in it. %} *\
119 /* { Close the above comment, if the C compiler mishandled it. */
122 " A string with backslash-newlines in it %{ %} \\
126 char apostrophe = '\'';
131 /* %{ and %} can be here too. */
134 /* Exercise pre-prologue dependency to %union. */
138 /* Exercise M4 quoting: '@:>@@:>@', 0. */
140 /* Also exercise %union. */
143 value_t ival; /* A comment to exercise an old bug. */
147 /* Exercise post-prologue dependency to %union. */
149 static YYSTYPE value_t_as_yystype (value_t val);
151 /* Exercise quotes in declarations. */
152 char quote[] = "@:>@@:>@,";
156 static void yyerror (const char *s);
157 static int yylex (void);
162 /* Exercise quotes in strings. */
163 %token FAKE "fake @<:@@:>@ \a\b\f\n\r\t\v\"\'\?\\\u005B\U0000005c ??!??'??(??)??-??/??<??=??> \x0\0"
166 /* Exercise M4 quoting: '@:>@@:>@', @<:@, 1. */
167 exp: '@<:@' '\1' two '$' '@' '{' oline output
169 /* Exercise quotes in braces. */
170 char tmp[] = "@<:@%c@:>@,\n";
175 two: '\x000000000000000000000000000000000000000000000000000000000000000000002';
176 oline: '@' 'o' 'l' 'i' 'n' 'e' '@' '_' '_' 'o' 'l' 'i' 'n' 'e' '_' '_';
177 output: '#' 'o' 'u' 't' 'p' 'u' 't' ' ';
179 /* Exercise M4 quoting: '@:>@@:>@', @<:@, 2. */
182 value_t_as_yystype (value_t val)
192 static const char *input = "@<:@\1\2$@{@oline@__@&t@oline__\
195 yylval = value_t_as_yystype (*input);
200 yyerror (const char *msg)
202 fprintf (stderr, "%s\n", msg);
206 # Pacify Emacs'font-lock-mode: "
209 [[typedef int value_t;
221 AT_CHECK([bison -d -v -o input.c input.y])
222 AT_COMPILE([input.o], [-c input.c])
223 AT_COMPILE([main.o], [-c main.c])
224 AT_COMPILE([input], [input.o main.o])
225 AT_PARSER_CHECK([./input], 0,