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: invalid value: $1
46 AT_SETUP([Invalid @n])
53 AT_CHECK([bison input.y], [1], [],
54 [[input.y:2.6-14: invalid value: @1
64 AT_SETUP([Type Clashes])
76 AT_CHECK([bison input.y], [1], [],
77 [[input.y:4.4-15: type clash (`bar' `') on default action
78 input.y:5.4-8: type clash (`bar' `') on default action
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])
97 /* This is seen in GCC: a %{ and %} in middle of a comment. */
98 const char *foo = "So %{ and %} can be here too.";
102 /* %{ and %} can be here too. */
105 /* Exercise pre-prologue dependency to %union. */
109 /* Exercise M4 quoting: '@:>@@:>@', 0. */
111 /* Also exercise %union. */
114 value_t ival; /* A comment to exercise an old bug. */
118 /* Exercise post-prologue dependency to %union. */
120 static YYSTYPE value_t_as_yystype (value_t val);
122 /* Exercise quotes in declarations. */
123 char quote[] = "@:>@@:>@,";
127 static void yyerror (const char *s);
128 static int yylex (void);
133 /* Exercise quotes in strings. */
134 %token FAKE "fake @<:@@:>@,"
137 /* Exercise M4 quoting: '@:>@@:>@', 1. */
140 /* Exercise quotes in braces. */
141 char tmp[] = "@<:@%c@:>@,\n";
146 /* Exercise M4 quoting: '@:>@@:>@', 2. */
149 value_t_as_yystype (value_t val)
159 static const char *input = "1";
160 yylval = value_t_as_yystype (*input);
165 yyerror (const char *msg)
167 fprintf (stderr, "%s\n", msg);
172 [[typedef int value_t;
184 AT_CHECK([bison input.y -d -v -o input.c])
185 AT_COMPILE([input], [input.c main.c])
186 AT_PARSER_CHECK([./input], 0,