]> git.saurik.com Git - bison.git/blob - tests/output.at
* Makefile.cfg (local-checks-to-skip): Add changelog-check,
[bison.git] / tests / output.at
1 # Checking the output filenames. -*- Autotest -*-
2 # Copyright (C) 2000, 2001, 2002, 2005 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., 51 Franklin Street, Fifth Floor, Boston, MA
17 # 02110-1301, USA.
18
19 AT_BANNER([[Output file names.]])
20
21
22 # AT_CHECK_OUTPUT(INPUT-FILE, [DIRECTIVES], [FLAGS], EXPECTED-FILES, [SHELLIO],
23 # [ADDITIONAL-TESTS])
24 # -----------------------------------------------------------------------------
25 m4_define([AT_CHECK_OUTPUT],
26 [AT_SETUP([Output files: $2 $3 $5])
27 case "$1" in
28 */*) mkdir `echo "$1" | sed 's,/.*,,'`;;
29 esac
30 AT_DATA([$1],
31 [[$2
32 %%
33 foo: {};
34 ]])
35
36 AT_CHECK([bison $3 $1 $5], 0)
37 AT_CHECK([ls $4], [], [ignore])
38 $6
39 AT_CLEANUP
40 ])
41
42 AT_CHECK_OUTPUT([foo.y], [], [-dv],
43 [foo.output foo.tab.c foo.tab.h])
44 AT_CHECK_OUTPUT([foo.y], [], [-dv],
45 [foo.output foo.tab.c foo.tab.h],
46 [>&-])
47 AT_CHECK_OUTPUT([foo.y], [], [-dv -o foo.c],
48 [foo.c foo.h foo.output])
49 AT_CHECK_OUTPUT([foo.y], [], [-dv -o foo.tab.c],
50 [foo.output foo.tab.c foo.tab.h])
51 AT_CHECK_OUTPUT([foo.y], [], [-dv -y],
52 [y.output y.tab.c y.tab.h])
53 AT_CHECK_OUTPUT([foo.y], [], [-dv -b bar],
54 [bar.output bar.tab.c bar.tab.h])
55 AT_CHECK_OUTPUT([foo.y], [], [-dv -g -o foo.c],
56 [foo.c foo.h foo.output foo.vcg])
57
58
59 AT_CHECK_OUTPUT([foo.y], [%defines %verbose], [],
60 [foo.output foo.tab.c foo.tab.h])
61 AT_CHECK_OUTPUT([foo.y], [%defines %verbose %yacc],[],
62 [y.output y.tab.c y.tab.h])
63
64 AT_CHECK_OUTPUT([foo.yy], [%defines %verbose %yacc],[],
65 [y.output y.tab.c y.tab.h])
66
67 # Exercise %output and %file-prefix
68 AT_CHECK_OUTPUT([foo.y], [%file-prefix="bar" %defines %verbose], [],
69 [bar.output bar.tab.c bar.tab.h])
70 AT_CHECK_OUTPUT([foo.y], [%output="bar.c" %defines %verbose %yacc],[],
71 [bar.output bar.c bar.h])
72 AT_CHECK_OUTPUT([foo.y],
73 [%file-prefix="baz" %output="bar.c" %defines %verbose %yacc],
74 [],
75 [bar.output bar.c bar.h])
76
77
78 # Check priorities of extension control.
79 AT_CHECK_OUTPUT([foo.yy], [%defines %verbose], [],
80 [foo.output foo.tab.cc foo.tab.hh])
81
82 AT_CHECK_OUTPUT([foo.yy], [%defines %verbose ], [-o foo.c],
83 [foo.c foo.h foo.output])
84
85 AT_CHECK_OUTPUT([foo.yy], [],
86 [--defines=foo.hpp -o foo.c++],
87 [foo.c++ foo.hpp])
88
89 AT_CHECK_OUTPUT([foo.yy], [],
90 [-o foo.c++ --graph=foo.gph],
91 [foo.c++ foo.gph])
92
93
94 ## ------------ ##
95 ## C++ output. ##
96 ## ------------ ##
97
98 m4_define([AT_CHECK_NO_SUBDIR_PART],
99 [# Also make sure that the includes do not refer to the subdirectory.
100 AT_CHECK([grep 'include .subdir/' $1.cc], 1, [])
101 AT_CHECK([grep 'include .subdir/' $1.hh], 1, [])
102 ])
103
104 AT_CHECK_OUTPUT([foo.yy], [%skeleton "lalr1.cc" %defines %verbose], [],
105 [foo.tab.cc foo.tab.hh foo.output location.hh stack.hh position.hh])
106
107 AT_CHECK_OUTPUT([subdir/foo.yy], [%skeleton "lalr1.cc" %defines %verbose], [],
108 [foo.tab.cc foo.tab.hh foo.output location.hh stack.hh position.hh],
109 [], [AT_CHECK_NO_SUBDIR_PART([foo.tab])])
110
111 AT_CHECK_OUTPUT([subdir/foo.yy], [%skeleton "lalr1.cc" %defines %verbose],
112 [-o subdir/foo.cc],
113 [subdir/foo.cc subdir/foo.hh subdir/foo.output subdir/location.hh subdir/stack.hh subdir/position.hh],
114 [], [AT_CHECK_NO_SUBDIR_PART([subdir/foo])])