]>
Commit | Line | Data |
---|---|---|
1 | # Checking the output filenames. -*- Autotest -*- | |
2 | # Copyright (C) 2000-2002, 2005-2010 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 3 of the License, or | |
7 | # (at your option) 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, see <http://www.gnu.org/licenses/>. | |
16 | ||
17 | AT_BANNER([[Output file names.]]) | |
18 | ||
19 | ||
20 | # AT_CHECK_OUTPUT(INPUT-FILE, [DIRECTIVES], [FLAGS], EXPECTED-FILES, [SHELLIO], | |
21 | # [ADDITIONAL-TESTS]) | |
22 | # ----------------------------------------------------------------------------- | |
23 | m4_define([AT_CHECK_OUTPUT], | |
24 | [AT_SETUP([[Output files: ]$2 $3 $5]) | |
25 | for file in $1 $4; do | |
26 | case "$file" in | |
27 | */*) mkdir -p `echo "$file" | sed 's,/.*,,'`;; | |
28 | esac | |
29 | done | |
30 | AT_DATA([$1], | |
31 | [$2[ | |
32 | %% | |
33 | foo: {}; | |
34 | ]]) | |
35 | ||
36 | AT_BISON_CHECK([$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.dot foo.h foo.output]) | |
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 including deprecated `=' | |
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], [%defines "foo.hpp"], | |
90 | [-o foo.c++], | |
91 | [foo.c++ foo.hpp]) | |
92 | ||
93 | AT_CHECK_OUTPUT([foo.yy], [], | |
94 | [-o foo.c++ --graph=foo.gph], | |
95 | [foo.c++ foo.gph]) | |
96 | ||
97 | ||
98 | ## ------------ ## | |
99 | ## C++ output. ## | |
100 | ## ------------ ## | |
101 | ||
102 | m4_define([AT_CHECK_NO_SUBDIR_PART], | |
103 | [# Also make sure that the includes do not refer to the subdirectory. | |
104 | AT_CHECK([grep 'include .subdir/' $1.cc], 1, []) | |
105 | AT_CHECK([grep 'include .subdir/' $1.hh], 1, []) | |
106 | ]) | |
107 | ||
108 | AT_CHECK_OUTPUT([foo.yy], [%skeleton "lalr1.cc" %defines %verbose], [], | |
109 | [foo.tab.cc foo.tab.hh foo.output stack.hh]) | |
110 | ||
111 | AT_CHECK_OUTPUT([foo.yy], [%skeleton "lalr1.cc" %defines %verbose %locations], [], | |
112 | [foo.tab.cc foo.tab.hh foo.output location.hh stack.hh position.hh]) | |
113 | ||
114 | AT_CHECK_OUTPUT([subdir/foo.yy], [%skeleton "lalr1.cc" %defines %verbose], [], | |
115 | [foo.tab.cc foo.tab.hh foo.output stack.hh], | |
116 | [], [AT_CHECK_NO_SUBDIR_PART([foo.tab])]) | |
117 | ||
118 | AT_CHECK_OUTPUT([subdir/foo.yy], [%skeleton "lalr1.cc" %defines %verbose %locations], | |
119 | [-o subdir/foo.cc], | |
120 | [subdir/foo.cc subdir/foo.hh subdir/foo.output subdir/location.hh subdir/stack.hh subdir/position.hh], | |
121 | [], [AT_CHECK_NO_SUBDIR_PART([subdir/foo])]) | |
122 | ||
123 | AT_CHECK_OUTPUT([gram_dir/foo.yy], | |
124 | [%skeleton "lalr1.cc" %defines %verbose %file-prefix "output_dir/foo"], | |
125 | [], | |
126 | [output_dir/foo.tab.cc output_dir/foo.tab.hh output_dir/foo.output output_dir/stack.hh]) | |
127 | ||
128 | AT_CHECK_OUTPUT([gram_dir/foo.yy], | |
129 | [%skeleton "lalr1.cc" %defines %locations %verbose %file-prefix "output_dir/foo"], | |
130 | [], | |
131 | [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]) | |
132 | ||
133 | ||
134 | # AT_CHECK_CONFLICTING_OUTPUT(INPUT-FILE, DIRECTIVES, FLAGS, STDERR, | |
135 | # [EXIT-STATUS]) | |
136 | # ------------------------------------------------------------------ | |
137 | m4_define([AT_CHECK_CONFLICTING_OUTPUT], | |
138 | [AT_SETUP([Conflicting output files: $2 $3]) | |
139 | case "$1" in | |
140 | */*) mkdir `echo "$1" | sed 's,/.*,,'`;; | |
141 | esac | |
142 | AT_DATA([$1], | |
143 | [[$2 | |
144 | %% | |
145 | foo: {}; | |
146 | ]]) | |
147 | ||
148 | [cp ]$1[ expout] | |
149 | # Because an output file name conflict is still a warning, Bison exits | |
150 | # with status 0, so AT_BISON_CHECK does not realize that there may be no | |
151 | # output file against which to check the XML. AT_BISON_CHECK_NO_XML | |
152 | # avoids that problem. | |
153 | AT_BISON_CHECK_NO_XML([$3 $1], $5, [], [$4]) | |
154 | AT_CHECK([[cat $1]], [[0]], [expout]) | |
155 | AT_CLEANUP | |
156 | ]) | |
157 | ||
158 | AT_CHECK_CONFLICTING_OUTPUT([foo.y], | |
159 | [], [--graph="foo.tab.c"], | |
160 | [foo.y: warning: conflicting outputs to file `foo.tab.c' | |
161 | ]) | |
162 | ||
163 | AT_CHECK_CONFLICTING_OUTPUT([foo.y], | |
164 | [%defines "foo.output"], [-v], | |
165 | [foo.y: warning: conflicting outputs to file `foo.output' | |
166 | ]) | |
167 | ||
168 | AT_CHECK_CONFLICTING_OUTPUT([foo.y], | |
169 | [%skeleton "lalr1.cc" %defines %locations], [--graph="location.hh"], | |
170 | [foo.y: warning: conflicting outputs to file `location.hh' | |
171 | ]) | |
172 | ||
173 | AT_CHECK_CONFLICTING_OUTPUT([foo.y], [], [-o foo.y], | |
174 | [foo.y: refusing to overwrite the input file `foo.y' | |
175 | ], 1) | |
176 | ||
177 | ||
178 | # AT_CHECK_OUTPUT_FILE_NAME(FILE-NAME-PREFIX, [ADDITIONAL-TESTS]) | |
179 | # --------------------------------------------------------------- | |
180 | m4_define([AT_CHECK_OUTPUT_FILE_NAME], | |
181 | [AT_SETUP([Output file name: $1]) | |
182 | ||
183 | # Skip if platform doesn't support file name. For example, Cygwin | |
184 | # doesn't support file names containing ":" or "\". | |
185 | AT_CHECK([[touch "]AS_ESCAPE([$1[.tmp]])[" || exit 77]]) | |
186 | ||
187 | AT_DATA_GRAMMAR([glr.y], | |
188 | [[%glr-parser | |
189 | %code { | |
190 | int yylex (void); | |
191 | void yyerror (const char *); | |
192 | } | |
193 | %% | |
194 | start: {}; | |
195 | ]]) | |
196 | AT_BISON_CHECK([-o "AS_ESCAPE([$1.c])" --defines="AS_ESCAPE([$1.h])" glr.y]) | |
197 | AT_CHECK([ls "AS_ESCAPE([$1.c])" "AS_ESCAPE([$1.h])"], [], [ignore]) | |
198 | AT_COMPILE([glr.o], [-c "AS_ESCAPE([$1.c])"]) | |
199 | $2 | |
200 | ||
201 | AT_DATA_GRAMMAR([cxx.y], | |
202 | [[%skeleton "lalr1.cc" | |
203 | %code { int yylex (yy::parser::semantic_type*); } | |
204 | %% | |
205 | start: {}; | |
206 | ]]) | |
207 | AT_BISON_CHECK([-o "AS_ESCAPE([$1.c])" --defines="AS_ESCAPE([$1.h])" cxx.y]) | |
208 | AT_CHECK([ls "AS_ESCAPE([$1.c])" "AS_ESCAPE([$1.h])"], [], [ignore]) | |
209 | AT_COMPILE_CXX([cxx.o], [-c "AS_ESCAPE([$1.c])"]) | |
210 | $2 | |
211 | ||
212 | AT_CLEANUP | |
213 | ]) | |
214 | ||
215 | # Notice that the header file name here cannot contain | |
216 | # `"' since FILENAME in `#include "FILENAME"' cannot. | |
217 | AT_CHECK_OUTPUT_FILE_NAME([[`~!@#$%^&*()-=_+{}[]|\:;<>, .']]) | |
218 | dnl Work around a bug in m4_expand that broke AT_SETUP in autoconf 2.62, | |
219 | dnl by using the definition from 2.63. | |
220 | m4_version_prereq([2.63], [], | |
221 | [m4_define([m4_expand], [_$0(-=<{($1)}>=-)]) | |
222 | m4_define([_m4_expand], | |
223 | [m4_changequote([-=<{(], [)}>=-])$1m4_changequote([, ])])]) | |
224 | AT_CHECK_OUTPUT_FILE_NAME([[(]]) | |
225 | AT_CHECK_OUTPUT_FILE_NAME([[)]]) | |
226 | AT_CHECK_OUTPUT_FILE_NAME([[@%:@]]) | |
227 | AT_CHECK_OUTPUT_FILE_NAME([[@@]]) | |
228 | AT_CHECK_OUTPUT_FILE_NAME([[@{]]) | |
229 | AT_CHECK_OUTPUT_FILE_NAME([[@}]]) | |
230 | AT_CHECK_OUTPUT_FILE_NAME([[@<:@]]) | |
231 | AT_CHECK_OUTPUT_FILE_NAME([[@:>@]]) |