]>
Commit | Line | Data |
---|---|---|
342b8b6e | 1 | # Checking the output filenames. -*- Autotest -*- |
7d424de1 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 | |
19 | AT_BANNER([[Output file names.]]) | |
20 | ||
21 | ||
7625ec2c | 22 | # AT_CHECK_OUTPUT(INPUT-FILE, [DIRECTIVES], [FLAGS], EXPECTED-FILES, [SHELLIO], |
b6ca79e8 | 23 | # [ADDITIONAL-TESTS], [PRE-TESTS]) |
f1bbfcce | 24 | # ----------------------------------------------------------------------------- |
342b8b6e | 25 | m4_define([AT_CHECK_OUTPUT], |
bbf9ca37 | 26 | [AT_SETUP([[Output files: ]$2 $3 $5]) |
b6ca79e8 | 27 | $7 |
cae5057f JD |
28 | for file in $1 $4; do |
29 | case "$file" in | |
30 | */*) mkdir -p `echo "$file" | sed 's,/.*,,'`;; | |
31 | esac | |
32 | done | |
342b8b6e | 33 | AT_DATA([$1], |
bbf9ca37 | 34 | [$2[ |
342b8b6e | 35 | %% |
bfcf1f3a | 36 | foo: {}; |
342b8b6e AD |
37 | ]]) |
38 | ||
da730230 | 39 | AT_BISON_CHECK([$3 $1 $5], 0) |
342b8b6e | 40 | AT_CHECK([ls $4], [], [ignore]) |
7625ec2c | 41 | $6 |
d803322e | 42 | AT_CLEANUP |
342b8b6e AD |
43 | ]) |
44 | ||
45 | AT_CHECK_OUTPUT([foo.y], [], [-dv], | |
02650b7f | 46 | [foo.output foo.tab.c foo.tab.h]) |
b6ca79e8 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 | 51 | AT_CHECK_OUTPUT([foo.y], [], [-dv], |
02650b7f | 52 | [foo.output foo.tab.c foo.tab.h], |
b6ca79e8 JD |
53 | [>&-], [], |
54 | [AT_CHECK([[case "$PREBISON" in *valgrind*) exit 77;; esac]])]) | |
55 | ||
342b8b6e | 56 | AT_CHECK_OUTPUT([foo.y], [], [-dv -o foo.c], |
02650b7f | 57 | [foo.c foo.h foo.output]) |
342b8b6e | 58 | AT_CHECK_OUTPUT([foo.y], [], [-dv -o foo.tab.c], |
02650b7f | 59 | [foo.output foo.tab.c foo.tab.h]) |
342b8b6e | 60 | AT_CHECK_OUTPUT([foo.y], [], [-dv -y], |
02650b7f | 61 | [y.output y.tab.c y.tab.h]) |
342b8b6e | 62 | AT_CHECK_OUTPUT([foo.y], [], [-dv -b bar], |
02650b7f | 63 | [bar.output bar.tab.c bar.tab.h]) |
342b8b6e | 64 | AT_CHECK_OUTPUT([foo.y], [], [-dv -g -o foo.c], |
35fe0834 | 65 | [foo.c foo.dot foo.h foo.output]) |
342b8b6e AD |
66 | |
67 | ||
68 | AT_CHECK_OUTPUT([foo.y], [%defines %verbose], [], | |
02650b7f | 69 | [foo.output foo.tab.c foo.tab.h]) |
342b8b6e | 70 | AT_CHECK_OUTPUT([foo.y], [%defines %verbose %yacc],[], |
02650b7f | 71 | [y.output y.tab.c y.tab.h]) |
342b8b6e | 72 | |
5e5d5415 | 73 | AT_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 `=' |
77 | AT_CHECK_OUTPUT([foo.y], [%file-prefix "bar" %defines %verbose], [], | |
02650b7f | 78 | [bar.output bar.tab.c bar.tab.h]) |
951366c1 | 79 | AT_CHECK_OUTPUT([foo.y], [%output="bar.c" %defines %verbose %yacc],[], |
02650b7f | 80 | [bar.output bar.c bar.h]) |
951366c1 | 81 | AT_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. | |
88 | AT_CHECK_OUTPUT([foo.yy], [%defines %verbose], [], | |
02650b7f | 89 | [foo.output foo.tab.cc foo.tab.hh]) |
342b8b6e AD |
90 | |
91 | AT_CHECK_OUTPUT([foo.yy], [%defines %verbose ], [-o foo.c], | |
02650b7f | 92 | [foo.c foo.h foo.output]) |
342b8b6e AD |
93 | |
94 | AT_CHECK_OUTPUT([foo.yy], [], | |
02650b7f PE |
95 | [--defines=foo.hpp -o foo.c++], |
96 | [foo.c++ foo.hpp]) | |
342b8b6e | 97 | |
02975b9a JD |
98 | AT_CHECK_OUTPUT([foo.yy], [%defines "foo.hpp"], |
99 | [-o foo.c++], | |
100 | [foo.c++ foo.hpp]) | |
101 | ||
342b8b6e | 102 | AT_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 | ||
111 | m4_define([AT_CHECK_NO_SUBDIR_PART], | |
112 | [# Also make sure that the includes do not refer to the subdirectory. | |
113 | AT_CHECK([grep 'include .subdir/' $1.cc], 1, []) | |
114 | AT_CHECK([grep 'include .subdir/' $1.hh], 1, []) | |
115 | ]) | |
116 | ||
117 | AT_CHECK_OUTPUT([foo.yy], [%skeleton "lalr1.cc" %defines %verbose], [], | |
2ea7730c AD |
118 | [foo.tab.cc foo.tab.hh foo.output stack.hh]) |
119 | ||
120 | AT_CHECK_OUTPUT([foo.yy], [%skeleton "lalr1.cc" %defines %verbose %locations], [], | |
02650b7f | 121 | [foo.tab.cc foo.tab.hh foo.output location.hh stack.hh position.hh]) |
7625ec2c AD |
122 | |
123 | AT_CHECK_OUTPUT([subdir/foo.yy], [%skeleton "lalr1.cc" %defines %verbose], [], | |
2ea7730c | 124 | [foo.tab.cc foo.tab.hh foo.output stack.hh], |
02650b7f | 125 | [], [AT_CHECK_NO_SUBDIR_PART([foo.tab])]) |
7625ec2c | 126 | |
2ea7730c | 127 | AT_CHECK_OUTPUT([subdir/foo.yy], [%skeleton "lalr1.cc" %defines %verbose %locations], |
7625ec2c | 128 | [-o subdir/foo.cc], |
02650b7f | 129 | [subdir/foo.cc subdir/foo.hh subdir/foo.output subdir/location.hh subdir/stack.hh subdir/position.hh], |
7625ec2c | 130 | [], [AT_CHECK_NO_SUBDIR_PART([subdir/foo])]) |
3f7ca628 | 131 | |
cae5057f JD |
132 | AT_CHECK_OUTPUT([gram_dir/foo.yy], |
133 | [%skeleton "lalr1.cc" %defines %verbose %file-prefix "output_dir/foo"], | |
134 | [], | |
2ea7730c AD |
135 | [output_dir/foo.tab.cc output_dir/foo.tab.hh output_dir/foo.output output_dir/stack.hh]) |
136 | ||
137 | AT_CHECK_OUTPUT([gram_dir/foo.yy], | |
138 | [%skeleton "lalr1.cc" %defines %locations %verbose %file-prefix "output_dir/foo"], | |
139 | [], | |
cae5057f JD |
140 | [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]) |
141 | ||
3f7ca628 | 142 | |
c0ee9e21 DJ |
143 | # AT_CHECK_CONFLICTING_OUTPUT(INPUT-FILE, DIRECTIVES, FLAGS, STDERR, |
144 | # [EXIT-STATUS]) | |
145 | # ------------------------------------------------------------------ | |
3f7ca628 JD |
146 | m4_define([AT_CHECK_CONFLICTING_OUTPUT], |
147 | [AT_SETUP([Conflicting output files: $2 $3]) | |
148 | case "$1" in | |
149 | */*) mkdir `echo "$1" | sed 's,/.*,,'`;; | |
150 | esac | |
151 | AT_DATA([$1], | |
152 | [[$2 | |
153 | %% | |
154 | foo: {}; | |
155 | ]]) | |
156 | ||
f39ab286 | 157 | [cp ]$1[ expout] |
890aeb28 JD |
158 | # Because an output file name conflict is still a warning, Bison exits |
159 | # with status 0, so AT_BISON_CHECK does not realize that there may be no | |
160 | # output file against which to check the XML. AT_BISON_CHECK_NO_XML | |
161 | # avoids that problem. | |
162 | AT_BISON_CHECK_NO_XML([$3 $1], $5, [], [$4]) | |
f39ab286 | 163 | AT_CHECK([[cat $1]], [[0]], [expout]) |
3f7ca628 JD |
164 | AT_CLEANUP |
165 | ]) | |
166 | ||
167 | AT_CHECK_CONFLICTING_OUTPUT([foo.y], | |
168 | [], [--graph="foo.tab.c"], | |
169 | [foo.y: warning: conflicting outputs to file `foo.tab.c' | |
170 | ]) | |
171 | ||
172 | AT_CHECK_CONFLICTING_OUTPUT([foo.y], | |
173 | [%defines "foo.output"], [-v], | |
174 | [foo.y: warning: conflicting outputs to file `foo.output' | |
175 | ]) | |
176 | ||
177 | AT_CHECK_CONFLICTING_OUTPUT([foo.y], | |
2ea7730c | 178 | [%skeleton "lalr1.cc" %defines %locations], [--graph="location.hh"], |
3f7ca628 JD |
179 | [foo.y: warning: conflicting outputs to file `location.hh' |
180 | ]) | |
bd9d212b | 181 | |
c0ee9e21 | 182 | AT_CHECK_CONFLICTING_OUTPUT([foo.y], [], [-o foo.y], |
f39ab286 | 183 | [foo.y: refusing to overwrite the input file `foo.y' |
c0ee9e21 DJ |
184 | ], 1) |
185 | ||
bd9d212b JD |
186 | |
187 | # AT_CHECK_OUTPUT_FILE_NAME(FILE-NAME-PREFIX, [ADDITIONAL-TESTS]) | |
2ea7730c | 188 | # --------------------------------------------------------------- |
bd9d212b JD |
189 | m4_define([AT_CHECK_OUTPUT_FILE_NAME], |
190 | [AT_SETUP([Output file name: $1]) | |
191 | ||
7439c5c0 JD |
192 | # Skip if platform doesn't support file name. For example, Cygwin |
193 | # doesn't support file names containing ":" or "\". | |
194 | AT_CHECK([[touch "]AS_ESCAPE([$1[.tmp]])[" || exit 77]]) | |
195 | ||
ce3448d5 | 196 | AT_DATA_GRAMMAR([glr.y], |
bd9d212b JD |
197 | [[%glr-parser |
198 | %code { | |
199 | int yylex (void); | |
200 | void yyerror (const char *); | |
201 | } | |
202 | %% | |
203 | start: {}; | |
204 | ]]) | |
da730230 | 205 | AT_BISON_CHECK([-o "AS_ESCAPE([$1.c])" --defines="AS_ESCAPE([$1.h])" glr.y]) |
bd9d212b JD |
206 | AT_CHECK([ls "AS_ESCAPE([$1.c])" "AS_ESCAPE([$1.h])"], [], [ignore]) |
207 | AT_COMPILE([glr.o], [-c "AS_ESCAPE([$1.c])"]) | |
208 | $2 | |
209 | ||
ce3448d5 | 210 | AT_DATA_GRAMMAR([cxx.y], |
bd9d212b JD |
211 | [[%skeleton "lalr1.cc" |
212 | %code { int yylex (yy::parser::semantic_type*); } | |
213 | %% | |
214 | start: {}; | |
215 | ]]) | |
da730230 | 216 | AT_BISON_CHECK([-o "AS_ESCAPE([$1.c])" --defines="AS_ESCAPE([$1.h])" cxx.y]) |
bd9d212b JD |
217 | AT_CHECK([ls "AS_ESCAPE([$1.c])" "AS_ESCAPE([$1.h])"], [], [ignore]) |
218 | AT_COMPILE_CXX([cxx.o], [-c "AS_ESCAPE([$1.c])"]) | |
219 | $2 | |
220 | ||
221 | AT_CLEANUP | |
222 | ]) | |
223 | ||
224 | # Notice that the header file name here cannot contain | |
225 | # `"' since FILENAME in `#include "FILENAME"' cannot. | |
226 | AT_CHECK_OUTPUT_FILE_NAME([[`~!@#$%^&*()-=_+{}[]|\:;<>, .']]) | |
f55efa38 JD |
227 | dnl Work around a bug in m4_expand that broke AT_SETUP in autoconf 2.62, |
228 | dnl by using the definition from 2.63. | |
215b40ac EB |
229 | m4_version_prereq([2.63], [], |
230 | [m4_define([m4_expand], [_$0(-=<{($1)}>=-)]) | |
f55efa38 | 231 | m4_define([_m4_expand], |
215b40ac | 232 | [m4_changequote([-=<{(], [)}>=-])$1m4_changequote([, ])])]) |
f55efa38 JD |
233 | AT_CHECK_OUTPUT_FILE_NAME([[(]]) |
234 | AT_CHECK_OUTPUT_FILE_NAME([[)]]) | |
cf48f675 | 235 | AT_CHECK_OUTPUT_FILE_NAME([[@%:@]]) |
bd9d212b JD |
236 | AT_CHECK_OUTPUT_FILE_NAME([[@@]]) |
237 | AT_CHECK_OUTPUT_FILE_NAME([[@{]]) | |
238 | AT_CHECK_OUTPUT_FILE_NAME([[@}]]) | |
bd9d212b JD |
239 | AT_CHECK_OUTPUT_FILE_NAME([[@<:@]]) |
240 | AT_CHECK_OUTPUT_FILE_NAME([[@:>@]]) |