]> git.saurik.com Git - bison.git/blame - tests/input.at
* src/reader.c (grammar_current_rule_prec_set).
[bison.git] / tests / input.at
CommitLineData
9b2d0677
AD
1# Checking the output filenames. -*- Autotest -*-
2# Copyright 2002 Free Software Foundation, Inc.
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
19AT_BANNER([[Input Processing.]])
20
21# Mostly test that we are robust to mistakes.
22
23## ------------ ##
24## Invalid $n. ##
25## ------------ ##
26
9b2d0677
AD
27AT_SETUP([Invalid $n])
28
29AT_DATA([input.y],
30[[%%
bfcf1f3a 31exp: { $$ = $1 ; };
9b2d0677
AD
32]])
33
34AT_CHECK([bison input.y], [1], [],
616429b5 35[[input.y:2: invalid value: $1
9b2d0677
AD
36]])
37
38AT_CLEANUP
39
40
41## ------------ ##
42## Invalid @n. ##
43## ------------ ##
44
9b2d0677
AD
45AT_SETUP([Invalid @n])
46
47AT_DATA([input.y],
48[[%%
bfcf1f3a 49exp: { @$ = @1 ; };
9b2d0677
AD
50]])
51
52AT_CHECK([bison input.y], [1], [],
616429b5 53[[input.y:2: invalid value: @1
9b2d0677
AD
54]])
55
56AT_CLEANUP
9af3fbce
AD
57
58
59## -------------- ##
60## Type clashes. ##
61## -------------- ##
62
63AT_SETUP([Type clashes])
64
65AT_DATA([input.y],
66[[%token foo
67%type <bar> exp
68%%
69exp: foo {} foo
70 | foo
71 | /* Empty. */
72 ;
73]])
74
75AT_CHECK([bison input.y], [1], [],
76[[input.y:5: type clash (`bar' `') on default action
77input.y:6: type clash (`bar' `') on default action
78input.y:7: empty rule for typed nonterminal, and no action
79]])
80
81AT_CLEANUP