This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Nits in perldelta template
[perl5.git] / t / TEST
CommitLineData
8d063cd8
LW
1#!./perl
2
8d063cd8 3# This is written in a peculiar style, since we're trying to avoid
1de9afcd
RGS
4# most of the constructs we'll be testing for. (This comment is
5# probably obsolete on the avoidance side, though still currrent
6# on the peculiarity side.)
8d063cd8 7
c537bcda
NC
8# t/TEST and t/harness need to share code. The logical way to do this would be
9# to have the common code in a file both require or use. However, t/TEST needs
10# to still work, to generate test results, even if require isn't working, so
11# we cannot do that. t/harness has no such restriction, so it is quite
12# acceptable to have it require t/TEST.
13
14# In which case, we need to stop t/TEST actually running tests, as all
15# t/harness needs are its subroutines.
16
2adbc9b6
NC
17
18# directories with special sets of test switches
19my %dir_to_switch =
20 (base => '',
21 comp => '',
22 run => '',
30b6e591 23 '../ext/File-Glob/t' => '-I.. -MTestInit', # FIXME - tests assume t/
2adbc9b6
NC
24 );
25
41239ce7
NC
26# "not absolute" is the the default, as it saves some fakery within TestInit
27# which can peturb tests, and takes CPU. Working with the upstream author of
28# any of these, to figure out how to remove them from this list, considered
29# "a good thing".
30my %abs = (
31 '../cpan/Archive-Extract' => 1,
32 '../cpan/Archive-Tar' => 1,
33 '../cpan/AutoLoader' => 1,
34 '../cpan/CPAN' => 1,
35 '../cpan/Class-ISA' => 1,
36 '../cpan/Cwd' => 1,
37 '../cpan/Devel-PPPort' => 1,
38 '../cpan/Encode' => 1,
39 '../cpan/ExtUtils-Command' => 1,
40 '../cpan/ExtUtils-Constant' => 1,
41 '../cpan/ExtUtils-MakeMaker' => 1,
42 '../cpan/ExtUtils-Manifest' => 1,
43 '../cpan/ExtUtils-ParseXS' => 1,
44 '../cpan/File-Fetch' => 1,
45 '../cpan/IPC-Cmd' => 1,
46 '../cpan/IPC-SysV' => 1,
47 '../cpan/Locale-Codes' => 1,
48 '../cpan/Log-Message' => 1,
49 '../cpan/Math-BigInt' => 1,
50 '../cpan/Math-BigRat' => 1,
51 '../cpan/Math-Complex' => 1,
52 '../cpan/Module-Build' => 1,
53 '../cpan/Module-Load' => 1,
54 '../cpan/Module-Load-Conditional' => 1,
55 '../cpan/Object-Accessor' => 1,
56 '../cpan/Package-Constants' => 1,
57 '../cpan/Parse-CPAN-Meta' => 1,
58 '../cpan/Pod-Simple' => 1,
59 '../cpan/Term-UI' => 1,
60 '../cpan/Test-Simple' => 1,
61 '../cpan/Tie-File' => 1,
62 '../cpan/bignum' => 1,
63 '../cpan/podlators' => 1,
4b05cdbd 64 '../dist/ExtUtils-Install' => 1,
41239ce7 65 );
6d1e6673 66
2adbc9b6 67my %temp_no_core =
dc5320d3 68 ('../cpan/B-Debug' => 1,
d371e02a 69 '../cpan/Compress-Raw-Bzip2' => 1,
c6f84bbd 70 '../cpan/Compress-Raw-Zlib' => 1,
b2861970 71 '../cpan/Devel-PPPort' => 1,
e41cfb92 72 '../cpan/Getopt-Long' => 1,
3fd969f4 73 '../cpan/IO-Compress' => 1,
80c0921c 74 '../cpan/Math-BigInt' => 1,
1235f19b 75 '../cpan/Math-BigRat' => 1,
b7c8007e 76 '../cpan/MIME-Base64' => 1,
f436ffb1 77 '../cpan/NEXT' => 1,
a636c943 78 '../cpan/parent' => 1,
832db5b1 79 '../cpan/Parse-CPAN-Meta' => 1,
490d1888 80 '../cpan/Pod-Simple' => 1,
f4e6b692 81 '../cpan/podlators' => 1,
e0ee75a6 82 '../cpan/Test-Simple' => 1,
325914f9 83 '../cpan/Tie-RefHash' => 1,
a9ddcb5d 84 '../cpan/Time-HiRes' => 1,
a3e5f045 85 '../cpan/Unicode-Collate' => 1,
c62c1f54 86 '../cpan/Unicode-Normalize' => 1,
2adbc9b6
NC
87 );
88
c537bcda
NC
89if ($::do_nothing) {
90 return 1;
91}
92
84650816
MS
93# Location to put the Valgrind log.
94my $Valgrind_Log = 'current.valgrind';
95
a687059c
LW
96$| = 1;
97
80ed0dea 98# for testing TEST only
0c3906b8
MS
99#BEGIN { require '../lib/strict.pm'; "strict"->import() };
100#BEGIN { require '../lib/warnings.pm'; "warnings"->import() };
80ed0dea 101
2574563e
TB
102# delete env vars that may influence the results
103# but allow override via *_TEST env var if wanted
104# (e.g. PERL5OPT_TEST=-d:NYTProf)
105for my $envname (qw(PERL5LIB PERLLIB PERL5OPT)) {
106 my $override = $ENV{"${envname}_TEST"};
107 if (defined $override) {
108 warn "$0: $envname=$override\n";
109 $ENV{$envname} = $override;
110 }
111 else {
112 delete $ENV{$envname};
113 }
114}
60e23f2f 115
cc6ae9e5
CB
116# remove empty elements due to insertion of empty symbols via "''p1'" syntax
117@ARGV = grep($_,@ARGV) if $^O eq 'VMS';
551405c4 118our $show_elapsed_time = $ENV{HARNESS_TIMER} || 0;
cc6ae9e5 119
18869dc6
NC
120# Cheesy version of Getopt::Std. We can't replace it with that, because we
121# can't rely on require working.
80ed0dea
DM
122{
123 my @argv = ();
5d9a6404 124 foreach my $idx (0..$#ARGV) {
b326da91 125 push( @argv, $ARGV[$idx] ), next unless $ARGV[$idx] =~ /^-(\S+)$/;
7019aa11 126 $::benchmark = 1 if $1 eq 'benchmark';
80ed0dea
DM
127 $::core = 1 if $1 eq 'core';
128 $::verbose = 1 if $1 eq 'v';
129 $::torture = 1 if $1 eq 'torture';
130 $::with_utf8 = 1 if $1 eq 'utf8';
131 $::with_utf16 = 1 if $1 eq 'utf16';
80ed0dea 132 $::taintwarn = 1 if $1 eq 'taintwarn';
43651d81 133 $ENV{PERL_CORE_MINITEST} = 1 if $1 eq 'minitest';
485988ae 134 if ($1 =~ /^deparse(,.+)?$/) {
80ed0dea
DM
135 $::deparse = 1;
136 $::deparse_opts = $1;
485988ae 137 }
5d9a6404 138 }
80ed0dea 139 @ARGV = @argv;
8d063cd8
LW
140}
141
378cc40b 142chdir 't' if -f 't/TEST';
ab662740
NC
143if (-f 'TEST' && -f 'harness' && -d '../lib') {
144 @INC = '../lib';
145}
378cc40b 146
3e6e8be7 147die "You need to run \"make test\" first to set things up.\n"
196918b0 148 unless -e 'perl' or -e 'perl.exe' or -e 'perl.pm';
4633a7c4 149
7a315204 150if ($ENV{PERL_3LOG}) { # Tru64 third(1) tool, see perlhack
09187cb1
JH
151 unless (-x 'perl.third') {
152 unless (-x '../perl.third') {
153 die "You need to run \"make perl.third first.\n";
154 }
155 else {
156 print "Symlinking ../perl.third as perl.third...\n";
157 die "Failed to symlink: $!\n"
158 unless symlink("../perl.third", "perl.third");
159 die "Symlinked but no executable perl.third: $!\n"
160 unless -x 'perl.third';
161 }
162 }
163}
164
3fb91a5e
GS
165# check leakage for embedders
166$ENV{PERL_DESTRUCT_LEVEL} = 2 unless exists $ENV{PERL_DESTRUCT_LEVEL};
167
4633a7c4 168$ENV{EMXSHELL} = 'sh'; # For OS/2
748a9306 169
28ffa55a 170if ($show_elapsed_time) { require Time::HiRes }
7ebf5c89
NC
171
172my %skip = (
173 '.' => 1,
174 '..' => 1,
175 'CVS' => 1,
176 'RCS' => 1,
177 'SCCS' => 1,
178 '.svn' => 1,
179 );
24c841ba 180
18869dc6 181# Roll your own File::Find!
24c841ba
MS
182sub _find_tests {
183 my($dir) = @_;
93e325a7 184 opendir DIR, $dir or die "Trouble opening $dir: $!";
a1886d87 185 foreach my $f (sort { $a cmp $b } readdir DIR) {
7ebf5c89 186 next if $skip{$f};
24c841ba 187
7ebf5c89 188 my $fullpath = "$dir/$f";
24c841ba 189
7ebf5c89
NC
190 if (-d $fullpath) {
191 _find_tests($fullpath);
192 } elsif ($f =~ /\.t$/) {
193 push @ARGV, $fullpath;
194 }
24c841ba
MS
195 }
196}
197
3fd4b359
MS
198
199# Scan the text of the test program to find switches and special options
200# we might need to apply.
201sub _scan_test {
202 my($test, $type) = @_;
203
204 open(my $script, "<", $test) or die "Can't read $test.\n";
205 my $first_line = <$script>;
206
207 $first_line =~ tr/\0//d if $::with_utf16;
208
209 my $switch = "";
210 if ($first_line =~ /#!.*\bperl.*\s-\w*([tT])/) {
79b01a68 211 $switch = "-$1";
3fd4b359
MS
212 } else {
213 if ($::taintwarn) {
214 # not all tests are expected to pass with this option
79b01a68 215 $switch = '-t';
3fd4b359
MS
216 } else {
217 $switch = '';
218 }
219 }
220
221 my $file_opts = "";
222 if ($type eq 'deparse') {
223 # Look for #line directives which change the filename
224 while (<$script>) {
11ea18f2 225 $file_opts = $file_opts . ",-f$3$4"
3fd4b359
MS
226 if /^#\s*line\s+(\d+)\s+((\w+)|"([^"]+)")/;
227 }
228 }
229
491c9572 230 close $script;
84650816 231
923e061d
MS
232 my $perl = './perl';
233 my $lib = '../lib';
491c9572
VP
234 my $run_dir;
235 my $return_dir;
236
2adbc9b6
NC
237 $test =~ /^(.+)\/[^\/]+/;
238 my $dir = $1;
2adbc9b6 239 my $testswitch = $dir_to_switch{$dir};
5ed59b83 240 if (!defined $testswitch) {
55d965ca 241 if ($test =~ s!^(\.\./(cpan|dist|ext)/[^/]+)/t!t!) {
491c9572 242 $run_dir = $1;
2adbc9b6
NC
243 $return_dir = '../../t';
244 $lib = '../../lib';
1ff5bc37 245 $perl = '../../t/perl';
6d1e6673 246 $testswitch = "-I../.. -MTestInit=U2T";
4b05cdbd 247 if ($2 eq 'cpan' || $2 eq 'dist') {
41239ce7 248 if($abs{$run_dir}) {
55d965ca
NC
249 $testswitch = $testswitch . ',A';
250 }
251 if ($temp_no_core{$run_dir}) {
252 $testswitch = $testswitch . ',NC';
253 }
2adbc9b6 254 }
2adbc9b6 255 } else {
30b6e591 256 $testswitch = '-I.. -MTestInit'; # -T will remove . from @INC
2adbc9b6 257 }
5ed59b83 258 }
923e061d 259
9fb03e61 260 my $utf8 = ($::with_utf8 || $::with_utf16) ? "-I$lib -Mutf8" : '';
84650816 261
9b37184d 262 my %options = (
491c9572
VP
263 perl => $perl,
264 lib => $lib,
265 test => $test,
266 run_dir => $run_dir,
267 return_dir => $return_dir,
268 testswitch => $testswitch,
269 utf8 => $utf8,
270 file => $file_opts,
271 switch => $switch,
9b37184d
VP
272 );
273
274 return \%options;
491c9572
VP
275}
276
d1fe220a
VP
277sub _cmd {
278 my($options, $type) = @_;
491c9572 279
d1fe220a 280 my $test = $options->{test};
491c9572 281
d1fe220a 282 my $cmd;
84650816 283 if ($type eq 'deparse') {
491c9572
VP
284 my $perl = "$options->{perl} $options->{testswitch}";
285 my $lib = $options->{lib};
d1fe220a
VP
286
287 $cmd = (
491c9572 288 "$perl $options->{switch} -I$lib -MO=-qq,Deparse,-sv1.,".
84650816
MS
289 "-l$::deparse_opts$options->{file} ".
290 "$test > $test.dp ".
d1fe220a
VP
291 "&& $perl $options->{switch} -I$lib $test.dp"
292 );
84650816
MS
293 }
294 elsif ($type eq 'perl') {
491c9572 295 my $perl = $options->{perl};
84650816
MS
296 my $redir = $^O eq 'VMS' ? '2>&1' : '';
297
298 if ($ENV{PERL_VALGRIND}) {
299 my $valgrind = $ENV{VALGRIND} // 'valgrind';
300 my $vg_opts = $ENV{VG_OPTS}
301 // "--suppressions=perl.supp --leak-check=yes "
302 . "--leak-resolution=high --show-reachable=yes "
d1fe220a 303 . "--num-callers=50";
84650816
MS
304 $perl = "$valgrind --log-fd=3 $vg_opts $perl";
305 $redir = "3>$Valgrind_Log";
306 }
307
491c9572 308 my $args = "$options->{testswitch} $options->{switch} $options->{utf8}";
d1fe220a 309 $cmd = $perl . _quote_args($args) . " $test $redir";
84650816
MS
310 }
311
d1fe220a
VP
312 return $cmd;
313}
314
9324df28
VP
315sub _before_fork {
316 my ($options) = @_;
317
318 if ($options->{run_dir}) {
319 my $run_dir = $options->{run_dir};
320 chdir $run_dir or die "Can't chdir to '$run_dir': $!";
321 }
322
323 return;
324}
325
326sub _after_fork {
327 my ($options) = @_;
328
329 if ($options->{return_dir}) {
330 my $return_dir = $options->{return_dir};
331 chdir $return_dir
332 or die "Can't chdir from '$options->{run_dir}' to '$return_dir': $!";
333 }
334
335 return;
336}
337
d1fe220a 338sub _run_test {
999051eb 339 my ($test, $type) = @_;
d1fe220a
VP
340
341 my $options = _scan_test($test, $type);
999051eb
VP
342 # $test might have changed if we're in ext/Foo, so don't use it anymore
343 # from now on. Use $options->{test} instead.
d1fe220a 344
9324df28 345 _before_fork($options);
d1fe220a
VP
346
347 my $cmd = _cmd($options, $type);
348
349 open(my $results, "$cmd |") or print "can't run '$cmd': $!.\n";
350
9324df28 351 _after_fork($options);
2adbc9b6 352
84650816
MS
353 # Our environment may force us to use UTF-8, but we can't be sure that
354 # anything we're reading from will be generating (well formed) UTF-8
355 # This may not be the best way - possibly we should unset ${^OPEN} up
356 # top?
357 binmode $results;
358
359 return $results;
360}
361
cc6ae9e5
CB
362sub _quote_args {
363 my ($args) = @_;
364 my $argstring = '';
365
366 foreach (split(/\s+/,$args)) {
367 # In VMS protect with doublequotes because otherwise
368 # DCL will lowercase -- unless already doublequoted.
369 $_ = q(").$_.q(") if ($^O eq 'VMS') && !/^\"/ && length($_) > 0;
11ea18f2 370 $argstring = $argstring . ' ' . $_;
cc6ae9e5
CB
371 }
372 return $argstring;
373}
374
6234cb77 375sub _populate_hash {
a3323f52 376 return unless defined $_[0];
6234cb77
NC
377 return map {$_, 1} split /\s+/, $_[0];
378}
379
a3323f52
NC
380sub _tests_from_manifest {
381 my ($extensions, $known_extensions) = @_;
6234cb77 382 my %skip;
a3323f52
NC
383 my %extensions = _populate_hash($extensions);
384 my %known_extensions = _populate_hash($known_extensions);
385
386 foreach (keys %known_extensions) {
11ea18f2 387 $skip{$_} = 1 unless $extensions{$_};
6234cb77 388 }
a3323f52
NC
389
390 my @results;
7ebf5c89 391 my $mani = '../MANIFEST';
7a315204 392 if (open(MANI, $mani)) {
18869dc6 393 while (<MANI>) {
a193a2db 394 if (m!^((?:cpan|dist|ext)/(\S+)/+(?:[^/\s]+\.t|test\.pl)|lib/\S+?(?:\.t|test\.pl))\s!) {
80ed0dea
DM
395 my $t = $1;
396 my $extension = $2;
a3323f52 397 if (!$::core || $t =~ m!^lib/[a-z]!) {
6234cb77
NC
398 if (defined $extension) {
399 $extension =~ s!/t$!!;
400 # XXX Do I want to warn that I'm skipping these?
401 next if $skip{$extension};
142f6a0d 402 my $flat_extension = $extension;
6ebb0601
CB
403 $flat_extension =~ s!-!/!g;
404 next if $skip{$flat_extension}; # Foo/Bar may live in Foo-Bar
6234cb77 405 }
7ebf5c89 406 my $path = "../$t";
a3323f52 407 push @results, $path;
80ed0dea 408 $::path_to_name{$path} = $t;
5a6e071d 409 }
7a315204
JH
410 }
411 }
35d88760 412 close MANI;
7a315204 413 } else {
f458b6e8 414 warn "$0: cannot open $mani: $!\n";
7a315204 415 }
a3323f52
NC
416 return @results;
417}
418
419unless (@ARGV) {
420 # base first, as TEST bails out if that can't run
421 # then comp, to validate that require works
422 # then run, to validate that -M works
423 # then we know we can -MTestInit for everything else, making life simpler
a4499558 424 foreach my $dir (qw(base comp run cmd io re op uni mro)) {
a3323f52
NC
425 _find_tests($dir);
426 }
427 _find_tests("lib") unless $::core;
428 # Config.pm may be broken for make minitest. And this is only a refinement
429 # for skipping tests on non-default builds, so it is allowed to fail.
430 # What we want to to is make a list of extensions which we did not build.
431 my $configsh = '../config.sh';
432 my ($extensions, $known_extensions);
433 if (-f $configsh) {
434 open FH, $configsh or die "Can't open $configsh: $!";
435 while (<FH>) {
436 if (/^extensions=['"](.*)['"]$/) {
437 $extensions = $1;
438 }
439 elsif (/^known_extensions=['"](.*)['"]$/) {
440 $known_extensions = $1;
441 }
442 }
443 if (!defined $known_extensions) {
444 warn "No known_extensions line found in $configsh";
445 }
446 if (!defined $extensions) {
447 warn "No extensions line found in $configsh";
448 }
449 }
450 # The "complex" constructions of list return from a subroutine, and push of
451 # a list, might fail if perl is really hosed, but they aren't needed for
452 # make minitest, and the building of extensions will likely also fail if
453 # something is that badly wrong.
454 push @ARGV, _tests_from_manifest($extensions, $known_extensions);
80ed0dea 455 unless ($::core) {
e018f8be 456 _find_tests('x2p');
6b77813c 457 _find_tests('porting');
80ed0dea 458 _find_tests('japh') if $::torture;
7019aa11 459 _find_tests('t/benchmark') if $::benchmark or $ENV{PERL_BENCHMARK};
e018f8be 460 }
8d063cd8
LW
461}
462
80ed0dea 463if ($::deparse) {
f193aa2f
MS
464 _testprogs('deparse', '', @ARGV);
465}
80ed0dea 466elsif ($::with_utf16) {
1de9afcd
RGS
467 for my $e (0, 1) {
468 for my $b (0, 1) {
469 print STDERR "# ENDIAN $e BOM $b\n";
470 my @UARGV;
471 for my $a (@ARGV) {
472 my $u = $a . "." . ($e ? "l" : "b") . "e" . ($b ? "b" : "");
473 my $f = $e ? "v" : "n";
474 push @UARGV, $u;
475 unlink($u);
476 if (open(A, $a)) {
477 if (open(U, ">$u")) {
90f6ca78 478 print U pack("$f", 0xFEFF) if $b;
1de9afcd
RGS
479 while (<A>) {
480 print U pack("$f*", unpack("C*", $_));
481 }
80ed0dea 482 close(U);
1de9afcd 483 }
80ed0dea 484 close(A);
1de9afcd
RGS
485 }
486 }
487 _testprogs('perl', '', @UARGV);
488 unlink(@UARGV);
489 }
490 }
491}
f193aa2f 492else {
f193aa2f 493 _testprogs('perl', '', @ARGV);
485988ae 494}
6ee623d5 495
bb365837 496sub _testprogs {
80ed0dea 497 my ($type, $args, @tests) = @_;
6ee623d5 498
485988ae 499 print <<'EOT' if ($type eq 'deparse');
7a315204 500------------------------------------------------------------------------------
485988ae 501TESTING DEPARSER
7a315204 502------------------------------------------------------------------------------
485988ae
RH
503EOT
504
80ed0dea 505 $::bad_files = 0;
73ddec28 506
cc6ae9e5 507 foreach my $t (@tests) {
80ed0dea 508 unless (exists $::path_to_name{$t}) {
7ebf5c89 509 my $tname = "t/$t";
f458b6e8 510 $::path_to_name{$t} = $tname;
cc6ae9e5 511 }
73ddec28 512 }
908801fe 513 my $maxlen = 0;
80ed0dea 514 foreach (@::path_to_name{@tests}) {
73ddec28
RB
515 s/\.\w+\z/./;
516 my $len = length ;
517 $maxlen = $len if $len > $maxlen;
088b5126 518 }
908801fe 519 # + 3 : we want three dots between the test name and the "ok"
80ed0dea 520 my $dotdotdot = $maxlen + 3 ;
7a834142 521 my $valgrind = 0;
80ed0dea
DM
522 my $total_files = @tests;
523 my $good_files = 0;
524 my $tested_files = 0;
525 my $totmax = 0;
ade55ef4 526 my %failed_tests;
80ed0dea 527
551405c4 528 while (my $test = shift @tests) {
28ffa55a 529 my $test_start_time = $show_elapsed_time ? Time::HiRes::time() : 0;
bb365837 530
bb365837
GS
531 if ($test =~ /^$/) {
532 next;
6ee623d5 533 }
485988ae
RH
534 if ($type eq 'deparse') {
535 if ($test eq "comp/redef.t") {
536 # Redefinition happens at compile time
537 next;
538 }
7a834142 539 elsif ($test =~ m{lib/Switch/t/}) {
485988ae
RH
540 # B::Deparse doesn't support source filtering
541 next;
542 }
543 }
80ed0dea
DM
544 my $te = $::path_to_name{$test} . '.'
545 x ($dotdotdot - length($::path_to_name{$test}));
cc6ae9e5
CB
546
547 if ($^O ne 'VMS') { # defer printing on VMS due to piping bug
548 print $te;
549 $te = '';
550 }
bb365837 551
999051eb 552 my $results = _run_test($test, $type);
d638aca2 553
f458b6e8
MS
554 my $failure;
555 my $next = 0;
556 my $seen_leader = 0;
557 my $seen_ok = 0;
20f82676 558 my $trailing_leader = 0;
80ed0dea 559 my $max;
43fe0836 560 my %todo;
84650816 561 while (<$results>) {
cc6ae9e5 562 next if /^\s*$/; # skip blank lines
615b7a35
JM
563 if (/^1..$/ && ($^O eq 'VMS')) {
564 # VMS pipe bug inserts blank lines.
565 my $l2 = <RESULTS>;
566 if ($l2 =~ /^\s*$/) {
567 $l2 = <RESULTS>;
568 }
569 $_ = '1..' . $l2;
570 }
80ed0dea 571 if ($::verbose) {
bb365837
GS
572 print $_;
573 }
21c74f43 574 unless (/^\#/) {
20f82676
DM
575 if ($trailing_leader) {
576 # shouldn't be anything following a postfix 1..n
a5890677 577 $failure = 'FAILED--extra output after trailing 1..n';
20f82676
DM
578 last;
579 }
809908f7 580 if (/^1\.\.([0-9]+)( todo ([\d ]+))?/) {
20f82676 581 if ($seen_leader) {
a5890677 582 $failure = 'FAILED--seen duplicate leader';
20f82676
DM
583 last;
584 }
bb365837 585 $max = $1;
f458b6e8 586 %todo = map { $_ => 1 } split / /, $3 if $3;
11ea18f2
NC
587 $totmax = $totmax + $max;
588 $tested_files = $tested_files + 1;
f458b6e8 589 if ($seen_ok) {
20f82676
DM
590 # 1..n appears at end of file
591 $trailing_leader = 1;
592 if ($next != $max) {
a5890677 593 $failure = "FAILED--expected $max tests, saw $next";
20f82676
DM
594 last;
595 }
596 }
597 else {
598 $next = 0;
599 }
f458b6e8 600 $seen_leader = 1;
bb365837
GS
601 }
602 else {
f458b6e8 603 if (/^(not )?ok(?: (\d+))?[^\#]*(\s*\#.*)?/) {
21c74f43
A
604 unless ($seen_leader) {
605 unless ($seen_ok) {
20f82676 606 $next = 0;
21c74f43 607 }
37ce32a7 608 }
21c74f43 609 $seen_ok = 1;
11ea18f2 610 $next = $next + 1;
f458b6e8
MS
611 my($not, $num, $extra, $istodo) = ($1, $2, $3, 0);
612 $num = $next unless $num;
613
614 if ($num == $next) {
615
eac7c728
MB
616 # SKIP is essentially the same as TODO for t/TEST
617 # this still conforms to TAP:
08d7a6b2 618 # http://search.cpan.org/dist/TAP/TAP.pm
eac7c728 619 $extra and $istodo = $extra =~ /#\s*(?:TODO|SKIP)\b/;
21c74f43
A
620 $istodo = 1 if $todo{$num};
621
622 if( $not && !$istodo ) {
20f82676 623 $failure = "FAILED at test $num";
21c74f43
A
624 last;
625 }
20f82676
DM
626 }
627 else {
f458b6e8 628 $failure ="FAILED--expected test $next, saw test $num";
20f82676 629 last;
37ce32a7 630 }
f458b6e8
MS
631 }
632 elsif (/^Bail out!\s*(.*)/i) { # magic words
633 die "FAILED--Further testing stopped" . ($1 ? ": $1\n" : ".\n");
bb365837
GS
634 }
635 else {
dbf51d07
YST
636 # module tests are allowed extra output,
637 # because Test::Harness allows it
4d834435 638 next if $test =~ /^\W*(cpan|dist|ext|lib)\b/;
a5890677 639 $failure = "FAILED--unexpected output at test $next";
20f82676 640 last;
bb365837 641 }
8d063cd8
LW
642 }
643 }
644 }
84650816 645 close $results;
20f82676
DM
646
647 if (not defined $failure) {
a5890677 648 $failure = 'FAILED--no leader found' unless $seen_leader;
20f82676
DM
649 }
650
7a834142 651 if ($ENV{PERL_VALGRIND}) {
da51b73c 652 my @valgrind;
84650816
MS
653 if (-e $Valgrind_Log) {
654 if (open(V, $Valgrind_Log)) {
da51b73c
MHM
655 @valgrind = <V>;
656 close V;
657 } else {
84650816 658 warn "$0: Failed to open '$Valgrind_Log': $!\n";
da51b73c
MHM
659 }
660 }
3068023c 661 if ($ENV{VG_OPTS} =~ /cachegrind/) {
84650816 662 if (rename $Valgrind_Log, "$test.valgrind") {
11ea18f2 663 $valgrind = $valgrind + 1;
3068023c
JC
664 } else {
665 warn "$0: Failed to create '$test.valgrind': $!\n";
666 }
667 }
668 elsif (@valgrind) {
d44161bf
MHM
669 my $leaks = 0;
670 my $errors = 0;
7a834142
JH
671 for my $i (0..$#valgrind) {
672 local $_ = $valgrind[$i];
d44161bf 673 if (/^==\d+== ERROR SUMMARY: (\d+) errors? /) {
11ea18f2 674 $errors = $errors + $1; # there may be multiple error summaries
d44161bf
MHM
675 } elsif (/^==\d+== LEAK SUMMARY:/) {
676 for my $off (1 .. 4) {
677 if ($valgrind[$i+$off] =~
678 /(?:lost|reachable):\s+\d+ bytes in (\d+) blocks/) {
11ea18f2 679 $leaks = $leaks + $1;
d44161bf
MHM
680 }
681 }
7a834142
JH
682 }
683 }
d44161bf 684 if ($errors or $leaks) {
84650816 685 if (rename $Valgrind_Log, "$test.valgrind") {
11ea18f2 686 $valgrind = $valgrind + 1;
d44161bf
MHM
687 } else {
688 warn "$0: Failed to create '$test.valgrind': $!\n";
7a834142
JH
689 }
690 }
691 } else {
692 warn "No valgrind output?\n";
693 }
84650816
MS
694 if (-e $Valgrind_Log) {
695 unlink $Valgrind_Log
696 or warn "$0: Failed to unlink '$Valgrind_Log': $!\n";
da51b73c 697 }
7a834142 698 }
485988ae
RH
699 if ($type eq 'deparse') {
700 unlink "./$test.dp";
701 }
211f317f
JH
702 if ($ENV{PERL_3LOG}) {
703 my $tpp = $test;
3716a21d 704 $tpp =~ s:^\.\./::;
9c54ecba 705 $tpp =~ s:/:_:g;
3716a21d
JH
706 $tpp =~ s:\.t$:.3log:;
707 rename("perl.3log", $tpp) ||
708 die "rename: perl3.log to $tpp: $!\n";
211f317f 709 }
20f82676 710 if (not defined $failure and $next != $max) {
a5890677 711 $failure="FAILED--expected $max tests, saw $next";
20f82676
DM
712 }
713
343bc60d
MS
714 if( !defined $failure # don't mask a test failure
715 and $? )
716 {
717 $failure = "FAILED--non-zero wait status: $?";
718 }
719
20f82676
DM
720 if (defined $failure) {
721 print "${te}$failure\n";
11ea18f2 722 $::bad_files = $::bad_files + 1;
ade55ef4
AL
723 if ($test =~ /^base/) {
724 die "Failed a basic test ($test) -- cannot continue.\n";
20f82676 725 }
11ea18f2 726 $failed_tests{$test} = 1;
20f82676
DM
727 }
728 else {
bb365837 729 if ($max) {
551405c4
AL
730 my $elapsed;
731 if ( $show_elapsed_time ) {
732 $elapsed = sprintf( " %8.0f ms", (Time::HiRes::time() - $test_start_time) * 1000 );
733 }
734 else {
735 $elapsed = "";
736 }
737 print "${te}ok$elapsed\n";
11ea18f2 738 $good_files = $good_files + 1;
bb365837
GS
739 }
740 else {
6b202754 741 print "${te}skipped\n";
11ea18f2 742 $tested_files = $tested_files - 1;
bb365837 743 }
bcce72a7 744 }
551405c4 745 } # while tests
8d063cd8 746
80ed0dea 747 if ($::bad_files == 0) {
20f82676 748 if ($good_files) {
bb365837
GS
749 print "All tests successful.\n";
750 # XXX add mention of 'perlbug -ok' ?
751 }
752 else {
753 die "FAILED--no tests were run for some reason.\n";
754 }
8d063cd8 755 }
bb365837 756 else {
80ed0dea 757 my $pct = $tested_files ? sprintf("%.2f", ($tested_files - $::bad_files) / $tested_files * 100) : "0.00";
ade55ef4
AL
758 my $s = $::bad_files == 1 ? "" : "s";
759 warn "Failed $::bad_files test$s out of $tested_files, $pct% okay.\n";
760 for my $test ( sort keys %failed_tests ) {
761 print "\t$test\n";
bb365837 762 }
4e4732c1 763 warn <<'SHRDLU_1';
f7d228c6
JH
764### Since not all tests were successful, you may want to run some of
765### them individually and examine any diagnostic messages they produce.
766### See the INSTALL document's section on "make test".
4e4732c1 767SHRDLU_1
80ed0dea 768 warn <<'SHRDLU_2' if $good_files / $total_files > 0.8;
f7d228c6
JH
769### You have a good chance to get more information by running
770### ./perl harness
771### in the 't' directory since most (>=80%) of the tests succeeded.
4e4732c1 772SHRDLU_2
f458b6e8 773 if (eval {require Config; import Config; 1}) {
80ed0dea 774 if ($::Config{usedl} && (my $p = $::Config{ldlibpthname})) {
4e4732c1 775 warn <<SHRDLU_3;
f7d228c6
JH
776### You may have to set your dynamic library search path,
777### $p, to point to the build directory:
4e4732c1 778SHRDLU_3
f458b6e8 779 if (exists $ENV{$p} && $ENV{$p} ne '') {
4e4732c1 780 warn <<SHRDLU_4a;
f7d228c6
JH
781### setenv $p `pwd`:\$$p; cd t; ./perl harness
782### $p=`pwd`:\$$p; export $p; cd t; ./perl harness
783### export $p=`pwd`:\$$p; cd t; ./perl harness
4e4732c1 784SHRDLU_4a
f458b6e8 785 } else {
4e4732c1 786 warn <<SHRDLU_4b;
f7d228c6
JH
787### setenv $p `pwd`; cd t; ./perl harness
788### $p=`pwd`; export $p; cd t; ./perl harness
789### export $p=`pwd`; cd t; ./perl harness
4e4732c1 790SHRDLU_4b
f458b6e8 791 }
4e4732c1 792 warn <<SHRDLU_5;
f7d228c6
JH
793### for csh-style shells, like tcsh; or for traditional/modern
794### Bourne-style shells, like bash, ksh, and zsh, respectively.
4e4732c1 795SHRDLU_5
f458b6e8 796 }
afd33fa9 797 }
bb365837 798 }
80ed0dea 799 my ($user,$sys,$cuser,$csys) = times;
f47304e9 800 print sprintf("u=%.2f s=%.2f cu=%.2f cs=%.2f scripts=%d tests=%d\n",
80ed0dea 801 $user,$sys,$cuser,$csys,$tested_files,$totmax);
7a834142
JH
802 if ($ENV{PERL_VALGRIND}) {
803 my $s = $valgrind == 1 ? '' : 's';
804 print "$valgrind valgrind report$s created.\n", ;
805 }
6ee623d5 806}
80ed0dea 807exit ($::bad_files != 0);
ade55ef4
AL
808
809# ex: set ts=8 sts=4 sw=4 noet: