This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
re-fix leak in Devel-PPPort
[perl5.git] / t / harness
CommitLineData
a5f75d66
AD
1#!./perl
2
3# We suppose that perl _mostly_ works at this moment, so may use
4# sophisticated testing.
5
aa689395 6BEGIN {
7 chdir 't' if -d 't';
122a0375 8 @INC = '../lib'; # pick up only this build's lib
aa689395 9}
c537bcda 10
e018f8be
JH
11my $torture; # torture testing?
12
abd39864 13use TAP::Harness 3.13;
9a4933c3 14use strict;
68bb50b0 15use Config;
a5f75d66 16
c537bcda
NC
17$::do_nothing = $::do_nothing = 1;
18require './TEST';
be075caf 19our $Valgrind_Log;
c537bcda 20
abd39864
MS
21my $Verbose = 0;
22$Verbose++ while @ARGV && $ARGV[0] eq '-v' && shift;
a5f75d66 23
be075caf
MH
24# For valgrind summary output
25my $htoolnm;
26my $hgrind_ct;
27
12558422 28if ($ARGV[0] && $ARGV[0] eq '-torture') {
e018f8be
JH
29 shift;
30 $torture = 1;
31}
32
60e23f2f
MS
33# Let tests know they're running in the perl core. Useful for modules
34# which live dual lives on CPAN.
35$ENV{PERL_CORE} = 1;
36
7c82d9f4 37my (@tests, @re, @anti_re);
122a0375 38
40996b78
AT
39# [.VMS]TEST.COM calls harness with empty arguments, so clean-up @ARGV
40@ARGV = grep $_ && length( $_ ) => @ARGV;
41
9ae5a6c3
NC
42sub _extract_tests;
43sub _extract_tests {
44 # This can probably be done more tersely with a map, but I doubt that it
45 # would be as clear
46 my @results;
47 foreach (@_) {
48 my $ref = ref $_;
49 if ($ref) {
50 if ($ref eq 'ARRAY') {
51 push @results, _extract_tests @$_;
52 } elsif ($ref eq 'HASH') {
53 push @results, _extract_tests values %$_;
54 } else {
55 die "Unknown reference type $ref";
56 }
57 } else {
0ae187c2 58 push @results, glob $_;
9ae5a6c3
NC
59 }
60 }
61 @results;
62}
63
7c82d9f4
YO
64while ($ARGV[0] && $ARGV[0]=~/^-(n?)re/) {
65 my $ary= $1 ? \@anti_re : \@re;
66
67 if ( $ARGV[0] !~ /=/ ) {
68 shift @ARGV;
69 while (@ARGV and $ARGV[0] !~ /^-/) {
70 push @$ary, shift @ARGV;
71 }
8a76aa1f 72 } else {
7c82d9f4 73 push @$ary, (split/=/,shift @ARGV)[1];
8a76aa1f
YO
74 }
75}
76
0279961e 77my $jobs = $ENV{TEST_JOBS};
abd39864 78my ($rules, $state, $color);
cd1b270f
B
79if ($ENV{HARNESS_OPTIONS}) {
80 for my $opt ( split /:/, $ENV{HARNESS_OPTIONS} ) {
81 if ( $opt =~ /^j(\d*)$/ ) {
82 $jobs ||= $1 || 9;
83 }
cd1b270f 84 elsif ( $opt eq 'c' ) {
abd39864 85 $color = 1;
cd1b270f
B
86 }
87 else {
88 die "Unknown HARNESS_OPTIONS item: $opt\n";
89 }
90 }
91}
0279961e 92
7a315204 93if (@ARGV) {
0279961e 94 # If you want these run in speed order, just use prove
4efb34a6
NIS
95 if ($^O eq 'MSWin32') {
96 @tests = map(glob($_),@ARGV);
97 }
98 else {
99 @tests = @ARGV;
100 }
68bb50b0
NC
101 # This is a hack to force config_heavy.pl to be loaded, before the
102 # prep work for running a test changes directory.
103 1 if $Config{d_fork};
7a315204 104} else {
9ae5a6c3
NC
105 # Ideally we'd get somewhere close to Tux's Oslo rules
106 # my $rules = {
107 # par => [
108 # { seq => '../ext/DB_File/t/*' },
109 # { seq => '../ext/IO_Compress_Zlib/t/*' },
9ae5a6c3
NC
110 # { seq => '../lib/ExtUtils/t/*' },
111 # '*'
112 # ]
113 # };
114
ee901278 115 # but for now, run all directories in sequence.
9ae5a6c3 116
b695f709 117 unless (@tests) {
0279961e 118 my @seq = <base/*.t>;
9ae5a6c3 119
560a5958 120 my @next = qw(comp run cmd io re opbasic op uni mro lib porting perf);
9ae5a6c3
NC
121 push @next, 'japh' if $torture;
122 push @next, 'win32' if $^O eq 'MSWin32';
7019aa11 123 push @next, 'benchmark' if $ENV{PERL_BENCHMARK};
ff5db609 124 push @next, 'bigmem' if $ENV{PERL_TEST_MEMORY};
0279961e
NC
125 # Hopefully TAP::Parser::Scheduler will support this syntax soon.
126 # my $next = { par => '{' . join (',', @next) . '}/*.t' };
127 my $next = { par => [
2f4cffa7 128 map { "$_/*.t" } @next
e6867818 129 ] };
0279961e
NC
130 @tests = _extract_tests ($next);
131
132 # This is a bit of a game, because we only want to sort these tests in
133 # speed order. base/*.t wants to run first, and ext,lib etc last and in
134 # MANIFEST order
135 if ($jobs) {
136 require App::Prove::State;
137 $state = App::Prove::State->new({ store => 'test_state' });
138 $state->apply_switch('slow', 'save');
139 # For some reason get_tests returns *all* the tests previously run,
140 # (in the right order), not simply the selection in @tests
141 # (in the right order). Not sure if this is a bug or a feature.
142 # Whatever, *we* are only interested in the ones that are in @tests
143 my %seen;
144 @seen{@tests} = ();
145 @tests = grep {exists $seen{$_} } $state->get_tests(0, @tests);
146 }
147 @tests = (@seq, @tests);
148 push @seq, $next;
9ae5a6c3
NC
149
150 my @last;
704b574d 151 push @last,
a3323f52 152 _tests_from_manifest($Config{extensions}, $Config{known_extensions});
226de479
NC
153 my %times;
154 if ($state) {
155 # Where known, collate the elapsed times by test name
156 foreach ($state->results->tests()) {
157 $times{$_->name} = $_->elapsed();
158 }
159 }
160
161 my %dir;
162 my %total_time;
9b0adf19
KW
163 my %serials;
164 my %all_dirs;
226de479 165
9b0adf19 166 # Preprocess the list of tests
226de479 167 for (@last) {
133fac12
MM
168 if ($^O eq 'MSWin32') {
169 s,\\,/,g; # canonicalize path
170 };
9b0adf19
KW
171
172 # Keep a list of the distinct directory names, and another list of
173 # those which contain a file whose name begins with a 0
174 if ( m! \A \.\. /
175 ( .*? ) # $1 is the directory path name
176 /
177 ( [^/]* \.t ) # $2 is the .t name
178 \z !x)
179 {
180 my $path = $1;
181
182 $all_dirs{$path} = 1;
183 $serials{$path} = 1 if $2 =~ / \A 0 /x;
184 }
185 }
186
187 # We assume that the reason a test file's name begins with a 0 is to
188 # order its execution among the tests in its directory. Hence, a
189 # directory containing such files should be tested in serial order.
190 #
191 # Add exceptions to the above rule
8867b097 192 for (qw(ext/Pod-Html/t cpan/IO-Zlib/t)) {
9b0adf19
KW
193 $serials{$_} = 1;
194 }
195
2f58fd73
KW
196 my @nonexistent_serials = grep { not exists $all_dirs{$_} } keys %serials;
197 if (@nonexistent_serials) {
198 die "These directories to be run serially are incorrectly"
199 . " specified:\n" . join "\n", @nonexistent_serials;
200 }
201
9b0adf19
KW
202 # Remove the serial testing directories from the list of all
203 # directories. The remaining ones are testable in parallel. Make the
204 # parallel list a scalar with names separated by '|' so that below
205 # they will be added to a regular expression.
206 my $non_serials = join "|", grep { not exists $serials{$_} } keys %all_dirs;
207 undef %all_dirs;
208 undef %serials;
209
210 for (@last) {
211 # Treat every file in each non-serial directory as its own
212 # "directory", so that it can be executed in parallel
213 m! \A ( \.\. / (?: $non_serials )
7d24ce13
KW
214 / [^/]+ \.t \z | .* [/] ) !x
215 or die "'$_'";
226de479 216 push @{$dir{$1}}, $_;
9b0adf19
KW
217
218 # This file contributes time to the total needed for the directory
219 # as a whole
226de479
NC
220 $total_time{$1} += $times{$_} || 0;
221 }
9b0adf19 222 #print STDERR __LINE__, join "\n", sort { $total_time{$b} <=> $total_time{$a} } keys %dir, " ";
226de479 223
0279961e 224 push @tests, @last;
9ae5a6c3 225
fc279e46
NC
226 # Generate T::H schedule rules that run the contents of each directory
227 # sequentially.
8f776eae 228 push @seq, { par => [ map { s!/$!/*!; { seq => $_ } } sort {
226de479 229 # Directories, ordered by total time descending then name ascending
704b574d 230 $total_time{$b} <=> $total_time{$a} || lc $a cmp lc $b
226de479 231 } keys %dir ] };
9ae5a6c3
NC
232
233 $rules = { seq => \@seq };
7a315204
JH
234 }
235}
22a65f1e
GS
236if ($^O eq 'MSWin32') {
237 s,\\,/,g for @tests;
238}
7c82d9f4
YO
239if (@re or @anti_re) {
240 my @keepers;
241 foreach my $test (@tests) {
242 my $keep = 0;
243 if (@re) {
244 foreach my $re (@re) {
245 $keep = 1 if $test=~/$re/;
246 }
247 } else {
248 $keep = 1;
249 }
250 if (@anti_re) {
251 foreach my $anti_re (@anti_re) {
252 $keep = 0 if $test=~/$anti_re/;
253 }
254 }
255 if ($keep) {
256 push @keepers, $test;
257 }
258 }
259 @tests= @keepers;
260}
9ae5a6c3 261
cfa56252
JH
262# Allow eg ./perl t/harness t/op/lc.t
263for (@tests) {
683433bd 264 if (! -f $_ && !/^\.\./ && -f "../$_") {
cfa56252
JH
265 $_ = "../$_";
266 s{^\.\./t/}{};
267 }
268}
269
4013a0e1
VP
270my %options;
271
272my $type = 'perl';
273
274# Load TAP::Parser now as otherwise it could be required in the short time span
275# in which the harness process chdirs into ext/Dist
276require TAP::Parser;
277
abd39864
MS
278my $h = TAP::Harness->new({
279 rules => $rules,
280 color => $color,
281 jobs => $jobs,
282 verbosity => $Verbose,
640eedb9 283 timer => $ENV{HARNESS_TIMER},
4013a0e1
VP
284 exec => sub {
285 my ($harness, $test) = @_;
286
287 my $options = $options{$test};
288 if (!defined $options) {
289 $options = $options{$test} = _scan_test($test, $type);
290 }
291
be075caf
MH
292 (local $Valgrind_Log = "$test.valgrind-current") =~ s/^.*\///;
293
4013a0e1
VP
294 return [ split ' ', _cmd($options, $type) ];
295 },
abd39864 296});
a0f20b65 297
be075caf
MH
298# Print valgrind output after test completes
299if ($ENV{PERL_VALGRIND}) {
300 $h->callback(
301 after_test => sub {
302 my ($job) = @_;
303 my $test = $job->[0];
304 my $vfile = "$test.valgrind-current";
305 $vfile =~ s/^.*\///;
306
307 if ( (! -z $vfile) && open(my $voutput, '<', $vfile)) {
308 print "$test: Valgrind output:\n";
309 print "$test: $_" for <$voutput>;
310 close($voutput);
311 }
312
313 (local $Valgrind_Log = "$test.valgrind-current") =~ s/^.*\///;
314
315 _check_valgrind(\$htoolnm, \$hgrind_ct, \$test);
316 }
317 );
318}
319
a0f20b65 320if ($state) {
e8fb11d7 321 $h->callback(
a0f20b65
NC
322 after_test => sub {
323 $state->observe_test(@_);
e8fb11d7 324 }
a0f20b65
NC
325 );
326 $h->callback(
327 after_runtests => sub {
328 $state->commit(@_);
329 }
330 );
9ae5a6c3 331}
a0f20b65
NC
332
333$h->callback(
334 parser_args => sub {
4013a0e1
VP
335 my ($args, $job) = @_;
336 my $test = $job->[0];
337 _before_fork($options{$test});
338 push @{ $args->{switches} }, "-I../../lib";
a0f20b65
NC
339 }
340 );
4013a0e1
VP
341
342$h->callback(
343 made_parser => sub {
344 my ($parser, $job) = @_;
345 my $test = $job->[0];
346 my $options = delete $options{$test};
347 _after_fork($options);
348 }
349 );
350
f483babb 351my $agg = $h->runtests(@tests);
be075caf 352_cleanup_valgrind(\$htoolnm, \$hgrind_ct);
f483babb 353exit $agg->has_errors ? 1 : 0;