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