2 # Automatically compute some dependencies for the hand-written tests
3 # of the Automake testsuite. Also, automatically generate some more
4 # tests from them (for particular cases/setups only).
6 # Copyright (C) 2011-2012 Free Software Foundation, Inc.
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2, or (at your option)
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #--------------------------------------------------------------------------
23 use warnings FATAL => "all";
25 use File::Basename ();
26 use constant TRUE => 1;
27 use constant FALSE => 0;
29 my $me = File::Basename::basename $0;
31 # For use in VPATH builds.
34 #--------------------------------------------------------------------------
41 $text =~ s/^$indentation//gm;
45 sub atomic_write ($$;$)
47 my ($outfile, $func) = (shift, shift);
48 my $perms = @_ > 0 ? shift : 0777;
49 my $tmpfile = "$outfile-t";
50 foreach my $f ($outfile, $tmpfile)
52 unlink $f or die "$me: cannot unlink '$f': $!\n"
55 open (my $fh, ">$tmpfile")
56 or die "$me: can't write to '$tmpfile': $!\n";
59 or die "$me: closing '$tmpfile': $!\n";
60 chmod ($perms & ~umask, $tmpfile)
61 or die "$me: cannot change perms for '$tmpfile': $!\n";
62 rename ($tmpfile, $outfile)
63 or die "$me: renaming '$tmpfile' -> '$outfile: $!\n'";
68 my ($re, $file) = (shift, shift);
69 # Try both builddir and srcdir, with builddir first, to play nice
71 open (FH, "<$file") or open (FH, "<$srcdir/$file")
72 or die "$me: cannot open file '$file': $!\n";
74 while (defined (my $line = <FH>))
82 close FH or die "$me: cannot close file '$file': $!\n";
86 sub write_wrapper_script ($$$)
88 my ($file_handle, $wrapped_test, $shell_setup_code, $creator_name) = @_;
89 print $file_handle unindent <<EOF;
91 # This file has been automatically generated. DO NOT EDIT BY HAND!
92 . ./defs-static || exit 1
94 # In the spirit of VPATH, we prefer a test in the build tree
95 # over one in the source tree.
96 for dir in . "\$am_top_srcdir"; do
97 if test -f "\$dir/$wrapped_test"; then
98 echo "\$0: will source \$dir/$wrapped_test"
99 . "\$dir/$wrapped_test"; exit \$?
102 echo "\$0: cannot find wrapped test '$wrapped_test'" >&2
107 sub get_list_of_tests ()
109 my $make = defined $ENV{MAKE} ? $ENV{MAKE} : "make";
110 # Unset MAKEFLAGS, for when we are called from make itself.
111 my $cmd = "MAKEFLAGS= && unset MAKEFLAGS && cd '$srcdir' && "
112 . "$make -s -f t/list-of-tests.mk print-list-of-tests";
113 my @tests_list = split /\s+/, `$cmd`;
114 die "$me: cannot get list of tests\n" unless $? == 0 && @tests_list;
116 foreach my $test (@tests_list)
118 # Respect VPATH builds.
119 next if -f $test || -f "$srcdir/$test";
120 warn "$me: test '$test' not found\n";
123 die "$me: some test scripts not found\n" if !$ok;
127 sub parse_options (@)
129 use Getopt::Long qw/GetOptions/;
131 GetOptions ('srcdir=s' => \$srcdir) or die "$me: usage error\n";
132 die "$me: too many arguments\n" if @ARGV > 0;
133 die "$me: srcdir '$srcdir': not a directory\n" unless -d $srcdir;
136 #--------------------------------------------------------------------------
138 # Where testsuite-related helper scripts, data files and shell libraries
139 # are placed. Relative to the 't/' subdirectory.
146 line_matcher => qr/^\s*required=.*\blibtool/,
147 nodist_prereqs => "t/libtool-macros.log",
151 line_matcher => qr/^\s*required=.*\bgettext/,
152 nodist_prereqs => "t/gettext-macros.log",
154 use_trivial_test_driver =>
156 line_matcher => qr/\btrivial-test-driver\b/,
157 dist_prereqs => "t/$auxdir/trivial-test-driver",
159 check_testsuite_summary =>
161 line_matcher => qr/\btestsuite-summary-checks\.sh\b/,
162 dist_prereqs => "t/$auxdir/testsuite-summary-checks.sh",
164 extract_testsuite_summary =>
166 line_matcher => qr/\bextract-testsuite-summary\.pl\b/,
167 dist_prereqs => "t/$auxdir/extract-testsuite-summary.pl",
169 check_tap_testsuite_summary =>
171 line_matcher => qr/\btap-summary-aux\.sh\b/,
172 dist_prereqs => "t/$auxdir/tap-summary-aux.sh",
174 on_tap_with_common_setup =>
176 line_matcher => qr/\btap-setup\.sh\b/,
177 dist_prereqs => "t/$auxdir/tap-setup.sh",
178 nodist_prereqs => "t/tap-common-setup.log",
182 line_matcher => qr/\bdepcomp\.sh\b/,
183 dist_prereqs => "t/$auxdir/depcomp.sh",
187 #--------------------------------------------------------------------------
189 my %test_generators =
192 # Any test script in the Automake testsuite that checks features of
193 # the Automake-provided parallel testsuite harness might want to
194 # define a sibling test that does similar checks, but for the old
195 # serial testsuite harness instead.
197 # Individual tests can request the creation of such a sibling by
198 # making the string "try-with-serial-tests" appear any line of the
201 serial_testsuite_harness =>
203 line_matcher => qr/\btry-with-serial-tests\b/,
204 shell_setup_code => 'am_serial_tests=yes',
207 # For each test script in the Automake testsuite that tests features
208 # of one or more automake-provided shell script from the 'lib/'
209 # subdirectory by running those scripts directly (i.e., not thought
210 # make calls and automake-generated makefiles), define a sibling test
211 # that does likewise, but running the said script with the configure
212 # time $SHELL instead of the default system shell /bin/sh.
214 # A test is considered a candidate for sibling-generation if it calls
215 # the 'get_shell_script' function anywhere.
217 # Individual tests can prevent the creation of such a sibling by
218 # explicitly setting the '$am_test_prefer_config_shell' variable
219 # to either "yes" or "no".
220 # The rationale for this is that if the variable is set to "yes",
221 # the test already uses $SHELL, so that a sibling would be just a
222 # duplicate; while if the variable is set to "no", the test doesn't
223 # support, or is not meant to use, $SHELL to run the script under
224 # testing, and forcing it to do so in the sibling would likely
225 # cause a spurious failure.
227 prefer_config_shell =>
230 qr/(^|\s)get_shell_script\s/,
232 qr/\bam_test_prefer_config_shell=/,
234 'am_test_prefer_config_shell=yes',
237 # Tests on tap support should be run with both the perl and awk
238 # implementations of the TAP driver (they run with the awk one
244 qr<(?:\bfetch_tap_driver\b|[\s/]tap-setup\.sh\b)>,
246 qr/\bam_tap_implementation=/,
248 'am_tap_implementation=perl',
252 #--------------------------------------------------------------------------
256 my @all_tests = get_list_of_tests;
257 my @generated_tests = (); # Will be updated later.
259 print "## -*- Makefile -*-\n";
260 print "## Generated by $me. DO NOT EDIT BY HAND!\n\n";
264 ## --------------------------------------------- ##
265 ## Autogenerated tests and their dependencies. ##
266 ## --------------------------------------------- ##
270 # FIXME: the following is not really right, since cannot compose wrapping
271 # of tests matching more than one condition. Still, there should be no
272 # such test at the moment, so the limitation is (temporarily) acceptable.
273 while (my ($k, $g) = each %test_generators)
275 my @wrapped_tests = grep {
276 line_match ($g->{line_matcher}, $_)
277 && (!$g->{line_rejecter} || !line_match ($g->{line_rejecter}, $_))
279 foreach my $wrapped_test (@wrapped_tests)
281 (my $base = $wrapped_test) =~ s/\.([^.]*)$//;
282 my $suf = $1 or die "$me: test '$wrapped_test' lacks a suffix\n";
283 my $wrapper_test = "$base-w.$suf";
284 # Register wrapper test as "autogenerated".
285 push @generated_tests, $wrapper_test;
286 # Create wrapper test.
287 atomic_write $wrapper_test,
288 sub { write_wrapper_script $_[0], $wrapped_test,
289 $g->{shell_setup_code} },
291 # The generated test works by sourcing the original test, so that
292 # it has to be re-run every time that changes ...
293 print "$base-w.log: $wrapped_test\n";
294 # ... but also every time the prerequisites of the wrapped test
295 # changes. The simpler (although suboptimal) way to do so is to
296 # ensure that the wrapped tests runs before the wrappee one (in
297 # case it needs to be re-run *at all*.
298 # FIXME: we could maybe refactor the script to find a more
299 # granular way to express such implicit dependencies.
300 print "$base-w.log: $base.log\n";
306 ## ---------------------------------------------------- ##
307 ## Ad-hoc autogenerated tests and their dependencies. ##
308 ## ---------------------------------------------------- ##
312 print "## Tests on automatic dependency tracking (see 'depcomp.sh').\n";
314 # Key: depmode, value: list of required programs.
319 makedepend => ["cc", "makedepend"],
320 dashmstdout => ["gcc"],
322 # This is for older (pre-3.x) GCC versions. Newer versions
323 # have depmode "gcc3".
325 # This is for older (pre-7) msvc versions. Newer versions
326 # have depmodes "msvc7" and "msvc7msys".
327 msvisualcpp => ["cl", "cygpath"],
328 msvcmsys => ["cl", "mingw"],
331 foreach my $lt (TRUE, FALSE)
333 foreach my $m (keys %depmodes)
335 my $planned = ($lt && $m eq "auto") ? 84 : 28;
339 $lt ? ("libtoolize",) : (),
343 "am_create_testdir=empty",
345 "depcomp_with_libtool=" . ($lt ? "yes" : "no"),
347 my $test = "t/depcomp" . ($lt ? "-lt-" : "-") . $m . ".tap";
348 # Register wrapper test as "autogenerated" ...
349 push @generated_tests, $test;
351 atomic_write ($test, sub
353 my $file_handle = shift;
354 print $file_handle unindent <<EOF;
356 # Automatically generated test. DO NOT EDIT BY HAND!
361 . "\$am_testauxdir/depcomp.sh"; exit \$?
368 # Update generated makefile fragment to account for all the generated tests.
369 print "generated_TESTS =\n";
370 map { print "generated_TESTS += $_\n" } @generated_tests;
372 # The test scripts are scanned for automatic dependency generation *after*
373 # the generated tests have been created, so they too can be scanned. To
374 # do so correctly, we need to update the list in '@all_tests' to make it
375 # comprise also the freshly-generated tests.
377 push @all_tests, @generated_tests;
381 ## ----------------------------- ##
382 ## Autogenerated dependencies. ##
383 ## ----------------------------- ##
387 while (my ($k, $x) = each %deps_extractor)
389 my $dist_prereqs = $x->{dist_prereqs} || "";
390 my $nodist_prereqs = $x->{nodist_prereqs} || "";
391 my @tests = grep { line_match $x->{line_matcher}, $_ } @all_tests;
392 map { s/\.[^.]*$//; s/$/\.log/; } (my @logs = @tests);
393 print "## Added by deps-extracting key '$k'.\n";
394 ## The list of all tests which have a dependency detected by the
396 print join(" \\\n ", "${k}_TESTS =", @tests) . "\n";
397 print "EXTRA_DIST += $dist_prereqs\n";
398 map { print "$_: $dist_prereqs $nodist_prereqs\n" } @logs;