]> git.saurik.com Git - bison.git/blame - tests/output.at
tests: handle Valgrind that complains about >&-.
[bison.git] / tests / output.at
CommitLineData
342b8b6e 1# Checking the output filenames. -*- Autotest -*-
6e30ede8
PE
2
3# Copyright (C) 2000, 2001, 2002, 2005, 2006, 2007, 2008, 2009, 2010
4# Free Software Foundation, Inc.
342b8b6e 5
f16b0819 6# This program is free software: you can redistribute it and/or modify
342b8b6e 7# it under the terms of the GNU General Public License as published by
f16b0819
PE
8# the Free Software Foundation, either version 3 of the License, or
9# (at your option) any later version.
10#
342b8b6e
AD
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
f16b0819 15#
342b8b6e 16# You should have received a copy of the GNU General Public License
f16b0819 17# along with this program. If not, see <http://www.gnu.org/licenses/>.
342b8b6e
AD
18
19AT_BANNER([[Output file names.]])
20
21
7625ec2c 22# AT_CHECK_OUTPUT(INPUT-FILE, [DIRECTIVES], [FLAGS], EXPECTED-FILES, [SHELLIO],
0162a44c 23# [ADDITIONAL-TESTS], [PRE-TESTS])
f1bbfcce 24# -----------------------------------------------------------------------------
342b8b6e 25m4_define([AT_CHECK_OUTPUT],
bd9d212b 26[AT_SETUP([[Output files: $2 $3 $5]])
0162a44c 27$7
cae5057f
JD
28for file in $1 $4; do
29 case "$file" in
30 */*) mkdir -p `echo "$file" | sed 's,/.*,,'`;;
31 esac
32done
342b8b6e
AD
33AT_DATA([$1],
34[[$2
35%%
bfcf1f3a 36foo: {};
342b8b6e
AD
37]])
38
da730230 39AT_BISON_CHECK([$3 $1 $5], 0)
342b8b6e 40AT_CHECK([ls $4], [], [ignore])
7625ec2c 41$6
d803322e 42AT_CLEANUP
342b8b6e
AD
43])
44
45AT_CHECK_OUTPUT([foo.y], [], [-dv],
02650b7f 46 [foo.output foo.tab.c foo.tab.h])
0162a44c
JD
47
48# Some versions of Valgrind (at least valgrind-3.6.0.SVN-Debian) report
49# "fgrep: write error: Bad file descriptor" when stdout is closed, so we
50# skip this test group during maintainer-check-valgrind.
f1bbfcce 51AT_CHECK_OUTPUT([foo.y], [], [-dv],
02650b7f 52 [foo.output foo.tab.c foo.tab.h],
0162a44c
JD
53 [>&-], [],
54 [AT_CHECK([[case "$PREBISON" in *valgrind*) exit 77;; esac]])])
55
342b8b6e 56AT_CHECK_OUTPUT([foo.y], [], [-dv -o foo.c],
02650b7f 57 [foo.c foo.h foo.output])
342b8b6e 58AT_CHECK_OUTPUT([foo.y], [], [-dv -o foo.tab.c],
02650b7f 59 [foo.output foo.tab.c foo.tab.h])
342b8b6e 60AT_CHECK_OUTPUT([foo.y], [], [-dv -y],
02650b7f 61 [y.output y.tab.c y.tab.h])
342b8b6e 62AT_CHECK_OUTPUT([foo.y], [], [-dv -b bar],
02650b7f 63 [bar.output bar.tab.c bar.tab.h])
342b8b6e 64AT_CHECK_OUTPUT([foo.y], [], [-dv -g -o foo.c],
35fe0834 65 [foo.c foo.dot foo.h foo.output])
342b8b6e
AD
66
67
68AT_CHECK_OUTPUT([foo.y], [%defines %verbose], [],
02650b7f 69 [foo.output foo.tab.c foo.tab.h])
342b8b6e 70AT_CHECK_OUTPUT([foo.y], [%defines %verbose %yacc],[],
02650b7f 71 [y.output y.tab.c y.tab.h])
342b8b6e 72
5e5d5415 73AT_CHECK_OUTPUT([foo.yy], [%defines %verbose %yacc],[],
02650b7f 74 [y.output y.tab.c y.tab.h])
5e5d5415 75
02975b9a
JD
76# Exercise %output and %file-prefix including deprecated `='
77AT_CHECK_OUTPUT([foo.y], [%file-prefix "bar" %defines %verbose], [],
02650b7f 78 [bar.output bar.tab.c bar.tab.h])
951366c1 79AT_CHECK_OUTPUT([foo.y], [%output="bar.c" %defines %verbose %yacc],[],
02650b7f 80 [bar.output bar.c bar.h])
951366c1 81AT_CHECK_OUTPUT([foo.y],
02975b9a 82 [%file-prefix="baz" %output "bar.c" %defines %verbose %yacc],
02650b7f
PE
83 [],
84 [bar.output bar.c bar.h])
951366c1 85
342b8b6e
AD
86
87# Check priorities of extension control.
88AT_CHECK_OUTPUT([foo.yy], [%defines %verbose], [],
02650b7f 89 [foo.output foo.tab.cc foo.tab.hh])
342b8b6e
AD
90
91AT_CHECK_OUTPUT([foo.yy], [%defines %verbose ], [-o foo.c],
02650b7f 92 [foo.c foo.h foo.output])
342b8b6e
AD
93
94AT_CHECK_OUTPUT([foo.yy], [],
02650b7f
PE
95 [--defines=foo.hpp -o foo.c++],
96 [foo.c++ foo.hpp])
342b8b6e 97
02975b9a
JD
98AT_CHECK_OUTPUT([foo.yy], [%defines "foo.hpp"],
99 [-o foo.c++],
100 [foo.c++ foo.hpp])
101
342b8b6e 102AT_CHECK_OUTPUT([foo.yy], [],
02650b7f
PE
103 [-o foo.c++ --graph=foo.gph],
104 [foo.c++ foo.gph])
7625ec2c
AD
105
106
107## ------------ ##
108## C++ output. ##
109## ------------ ##
110
111m4_define([AT_CHECK_NO_SUBDIR_PART],
112[# Also make sure that the includes do not refer to the subdirectory.
113AT_CHECK([grep 'include .subdir/' $1.cc], 1, [])
114AT_CHECK([grep 'include .subdir/' $1.hh], 1, [])
115])
116
117AT_CHECK_OUTPUT([foo.yy], [%skeleton "lalr1.cc" %defines %verbose], [],
02650b7f 118 [foo.tab.cc foo.tab.hh foo.output location.hh stack.hh position.hh])
7625ec2c
AD
119
120AT_CHECK_OUTPUT([subdir/foo.yy], [%skeleton "lalr1.cc" %defines %verbose], [],
02650b7f
PE
121 [foo.tab.cc foo.tab.hh foo.output location.hh stack.hh position.hh],
122 [], [AT_CHECK_NO_SUBDIR_PART([foo.tab])])
7625ec2c
AD
123
124AT_CHECK_OUTPUT([subdir/foo.yy], [%skeleton "lalr1.cc" %defines %verbose],
125 [-o subdir/foo.cc],
02650b7f 126 [subdir/foo.cc subdir/foo.hh subdir/foo.output subdir/location.hh subdir/stack.hh subdir/position.hh],
7625ec2c 127 [], [AT_CHECK_NO_SUBDIR_PART([subdir/foo])])
3f7ca628 128
cae5057f
JD
129AT_CHECK_OUTPUT([gram_dir/foo.yy],
130 [%skeleton "lalr1.cc" %defines %verbose %file-prefix "output_dir/foo"],
131 [],
132 [output_dir/foo.tab.cc output_dir/foo.tab.hh output_dir/foo.output output_dir/location.hh output_dir/stack.hh output_dir/position.hh])
133
3f7ca628 134
c0ee9e21
DJ
135# AT_CHECK_CONFLICTING_OUTPUT(INPUT-FILE, DIRECTIVES, FLAGS, STDERR,
136# [EXIT-STATUS])
137# ------------------------------------------------------------------
3f7ca628
JD
138m4_define([AT_CHECK_CONFLICTING_OUTPUT],
139[AT_SETUP([Conflicting output files: $2 $3])
140case "$1" in
141 */*) mkdir `echo "$1" | sed 's,/.*,,'`;;
142esac
143AT_DATA([$1],
144[[$2
145%%
146foo: {};
147]])
148
47fa5747 149[cp ]$1[ expout]
c50befe6
JD
150# Because an output file name conflict is still a warning, Bison exits
151# with status 0, so AT_BISON_CHECK does not realize that there may be no
152# output file against which to check the XML. AT_BISON_CHECK_NO_XML
153# avoids that problem.
154AT_BISON_CHECK_NO_XML([$3 $1], $5, [], [$4])
47fa5747 155AT_CHECK([[cat $1]], [[0]], [expout])
3f7ca628
JD
156AT_CLEANUP
157])
158
159AT_CHECK_CONFLICTING_OUTPUT([foo.y],
160[], [--graph="foo.tab.c"],
161[foo.y: warning: conflicting outputs to file `foo.tab.c'
162])
163
164AT_CHECK_CONFLICTING_OUTPUT([foo.y],
165[%defines "foo.output"], [-v],
166[foo.y: warning: conflicting outputs to file `foo.output'
167])
168
169AT_CHECK_CONFLICTING_OUTPUT([foo.y],
170[%skeleton "lalr1.cc" %defines], [--graph="location.hh"],
171[foo.y: warning: conflicting outputs to file `location.hh'
172])
bd9d212b 173
c0ee9e21 174AT_CHECK_CONFLICTING_OUTPUT([foo.y], [], [-o foo.y],
47fa5747 175[foo.y: refusing to overwrite the input file `foo.y'
c0ee9e21
DJ
176], 1)
177
bd9d212b
JD
178
179# AT_CHECK_OUTPUT_FILE_NAME(FILE-NAME-PREFIX, [ADDITIONAL-TESTS])
180# -----------------------------------------------------------------------------
181m4_define([AT_CHECK_OUTPUT_FILE_NAME],
182[AT_SETUP([Output file name: $1])
183
9637e0ed
JD
184# Skip if platform doesn't support file name. For example, Cygwin
185# doesn't support file names containing ":" or "\".
186AT_CHECK([[touch "]AS_ESCAPE([$1[.tmp]])[" || exit 77]])
187
ce3448d5 188AT_DATA_GRAMMAR([glr.y],
bd9d212b
JD
189[[%glr-parser
190%code {
191 int yylex (void);
192 void yyerror (const char *);
193}
194%%
195start: {};
196]])
da730230 197AT_BISON_CHECK([-o "AS_ESCAPE([$1.c])" --defines="AS_ESCAPE([$1.h])" glr.y])
bd9d212b
JD
198AT_CHECK([ls "AS_ESCAPE([$1.c])" "AS_ESCAPE([$1.h])"], [], [ignore])
199AT_COMPILE([glr.o], [-c "AS_ESCAPE([$1.c])"])
200$2
201
ce3448d5 202AT_DATA_GRAMMAR([cxx.y],
bd9d212b
JD
203[[%skeleton "lalr1.cc"
204%code { int yylex (yy::parser::semantic_type*); }
205%%
206start: {};
207]])
da730230 208AT_BISON_CHECK([-o "AS_ESCAPE([$1.c])" --defines="AS_ESCAPE([$1.h])" cxx.y])
bd9d212b
JD
209AT_CHECK([ls "AS_ESCAPE([$1.c])" "AS_ESCAPE([$1.h])"], [], [ignore])
210AT_COMPILE_CXX([cxx.o], [-c "AS_ESCAPE([$1.c])"])
211$2
212
213AT_CLEANUP
214])
215
216# Notice that the header file name here cannot contain
217# `"' since FILENAME in `#include "FILENAME"' cannot.
218AT_CHECK_OUTPUT_FILE_NAME([[`~!@#$%^&*()-=_+{}[]|\:;<>, .']])
f55efa38
JD
219dnl Work around a bug in m4_expand that broke AT_SETUP in autoconf 2.62,
220dnl by using the definition from 2.63.
bee1df15
EB
221m4_version_prereq([2.63], [],
222[m4_define([m4_expand], [_$0(-=<{($1)}>=-)])
f55efa38 223m4_define([_m4_expand],
bee1df15 224[m4_changequote([-=<{(], [)}>=-])$1m4_changequote([, ])])])
f55efa38
JD
225AT_CHECK_OUTPUT_FILE_NAME([[(]])
226AT_CHECK_OUTPUT_FILE_NAME([[)]])
b4d71a96 227AT_CHECK_OUTPUT_FILE_NAME([[@%:@]])
bd9d212b
JD
228AT_CHECK_OUTPUT_FILE_NAME([[@@]])
229AT_CHECK_OUTPUT_FILE_NAME([[@{]])
230AT_CHECK_OUTPUT_FILE_NAME([[@}]])
bd9d212b
JD
231AT_CHECK_OUTPUT_FILE_NAME([[@<:@]])
232AT_CHECK_OUTPUT_FILE_NAME([[@:>@]])