This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldelta: Rmv entry that applied only to 5.25 dev release
[perl5.git] / t / TEST
CommitLineData
63217fa2 1#!./perl
8d063cd8 2
8d063cd8 3# This is written in a peculiar style, since we're trying to avoid
1de9afcd 4# most of the constructs we'll be testing for. (This comment is
8bdd21ca 5# probably obsolete on the avoidance side, though still current
1de9afcd 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
94708f6d
JH
17# Measure the elapsed wallclock time.
18my $t0 = time();
19
2722144b
MH
20# If we're doing deparse tests, ignore failures for these
21my $deparse_failures;
22
23# And skip even running these
24my $deparse_skips;
2adbc9b6
NC
25
26# directories with special sets of test switches
27my %dir_to_switch =
28 (base => '',
29 comp => '',
30 run => '',
30b6e591 31 '../ext/File-Glob/t' => '-I.. -MTestInit', # FIXME - tests assume t/
2adbc9b6
NC
32 );
33
cb596ae4 34# "not absolute" is the default, as it saves some fakery within TestInit
8bdd21ca 35# which can perturb tests, and takes CPU. Working with the upstream author of
41239ce7
NC
36# any of these, to figure out how to remove them from this list, considered
37# "a good thing".
38my %abs = (
41239ce7
NC
39 '../cpan/Archive-Tar' => 1,
40 '../cpan/AutoLoader' => 1,
41 '../cpan/CPAN' => 1,
41239ce7
NC
42 '../cpan/Devel-PPPort' => 1,
43 '../cpan/Encode' => 1,
41239ce7 44 '../cpan/ExtUtils-Constant' => 1,
d393d7e5 45 '../cpan/ExtUtils-Install' => 1,
41239ce7 46 '../cpan/ExtUtils-MakeMaker' => 1,
854a00d8 47 '../cpan/ExtUtils-Manifest' => 1,
41239ce7
NC
48 '../cpan/File-Fetch' => 1,
49 '../cpan/IPC-Cmd' => 1,
50 '../cpan/IPC-SysV' => 1,
51 '../cpan/Locale-Codes' => 1,
41239ce7
NC
52 '../cpan/Module-Load' => 1,
53 '../cpan/Module-Load-Conditional' => 1,
41239ce7 54 '../cpan/Pod-Simple' => 1,
41239ce7 55 '../cpan/Test-Simple' => 1,
41239ce7 56 '../cpan/podlators' => 1,
2a6dc374 57 '../dist/Cwd' => 1,
cc79184a 58 '../dist/ExtUtils-ParseXS' => 1,
c0504019 59 '../dist/Tie-File' => 1,
41239ce7 60 );
2a6dc374 61
2adbc9b6 62my %temp_no_core =
dc5320d3 63 ('../cpan/B-Debug' => 1,
d371e02a 64 '../cpan/Compress-Raw-Bzip2' => 1,
c6f84bbd 65 '../cpan/Compress-Raw-Zlib' => 1,
b2861970 66 '../cpan/Devel-PPPort' => 1,
e41cfb92 67 '../cpan/Getopt-Long' => 1,
3fd969f4 68 '../cpan/IO-Compress' => 1,
b7c8007e 69 '../cpan/MIME-Base64' => 1,
a636c943 70 '../cpan/parent' => 1,
490d1888 71 '../cpan/Pod-Simple' => 1,
f4e6b692 72 '../cpan/podlators' => 1,
e0ee75a6 73 '../cpan/Test-Simple' => 1,
325914f9 74 '../cpan/Tie-RefHash' => 1,
a3e5f045 75 '../cpan/Unicode-Collate' => 1,
3baae3fa 76 '../dist/Unicode-Normalize' => 1,
2adbc9b6
NC
77 );
78
19641fd7
DM
79# temporary workaround Apr 2017. These need '.' in @INC.
80# Ideally this # list will eventually be empty
81
82my %temp_needs_dot = map { $_ => 1 } qw(
83 ../cpan/ExtUtils-Install
84 ../cpan/Filter-Util-Call
85 ../cpan/libnet
86 ../cpan/Locale-Codes
87 ../cpan/Math-BigInt
88 ../cpan/Math-BigRat
89 ../cpan/Test-Harness
90 ../cpan/Test-Simple
91 ../cpan/version
92);
93
94
2574563e
TB
95# delete env vars that may influence the results
96# but allow override via *_TEST env var if wanted
97# (e.g. PERL5OPT_TEST=-d:NYTProf)
b6646683
DG
98my @bad_env_vars = qw(
99 PERL5LIB PERLLIB PERL5OPT
100 PERL_YAML_BACKEND PERL_JSON_BACKEND
101);
102
103for my $envname (@bad_env_vars) {
2574563e
TB
104 my $override = $ENV{"${envname}_TEST"};
105 if (defined $override) {
106 warn "$0: $envname=$override\n";
107 $ENV{$envname} = $override;
108 }
109 else {
110 delete $ENV{$envname};
111 }
112}
60e23f2f 113
be075caf
MH
114# Location to put the Valgrind log.
115our $Valgrind_Log;
116
117my %skip = (
118 '.' => 1,
119 '..' => 1,
120 'CVS' => 1,
121 'RCS' => 1,
122 'SCCS' => 1,
123 '.svn' => 1,
124 );
125
75e21add 126
63217fa2 127if ($::do_nothing) {
75e21add
JH
128 return 1;
129}
130
a2d3de13
NC
131$| = 1;
132
133# for testing TEST only
134#BEGIN { require '../lib/strict.pm'; "strict"->import() };
135#BEGIN { require '../lib/warnings.pm'; "warnings"->import() };
136
cc6ae9e5
CB
137# remove empty elements due to insertion of empty symbols via "''p1'" syntax
138@ARGV = grep($_,@ARGV) if $^O eq 'VMS';
70a78ba7 139
7fa64c24
FC
140# String eval to avoid loading File::Glob on non-miniperl.
141# (Windows only uses this script for miniperl.)
804352e2 142@ARGV = eval 'map glob, @ARGV' if $^O eq 'MSWin32';
70a78ba7 143
551405c4 144our $show_elapsed_time = $ENV{HARNESS_TIMER} || 0;
cc6ae9e5 145
18869dc6
NC
146# Cheesy version of Getopt::Std. We can't replace it with that, because we
147# can't rely on require working.
80ed0dea
DM
148{
149 my @argv = ();
5d9a6404 150 foreach my $idx (0..$#ARGV) {
b03030b8 151 push( @argv, $ARGV[$idx] ), next unless $ARGV[$idx] =~ /^-(\S+)$/;
7019aa11 152 $::benchmark = 1 if $1 eq 'benchmark';
80ed0dea
DM
153 $::core = 1 if $1 eq 'core';
154 $::verbose = 1 if $1 eq 'v';
155 $::torture = 1 if $1 eq 'torture';
156 $::with_utf8 = 1 if $1 eq 'utf8';
157 $::with_utf16 = 1 if $1 eq 'utf16';
80ed0dea 158 $::taintwarn = 1 if $1 eq 'taintwarn';
485988ae 159 if ($1 =~ /^deparse(,.+)?$/) {
80ed0dea
DM
160 $::deparse = 1;
161 $::deparse_opts = $1;
2722144b 162 _process_deparse_config();
485988ae 163 }
5d9a6404 164 }
80ed0dea 165 @ARGV = @argv;
8d063cd8
LW
166}
167
378cc40b 168chdir 't' if -f 't/TEST';
ab662740
NC
169if (-f 'TEST' && -f 'harness' && -d '../lib') {
170 @INC = '../lib';
171}
378cc40b 172
3816c65f 173die "You need to run \"make test_prep\" first to set things up.\n"
196918b0 174 unless -e 'perl' or -e 'perl.exe' or -e 'perl.pm';
4633a7c4 175
3fb91a5e
GS
176# check leakage for embedders
177$ENV{PERL_DESTRUCT_LEVEL} = 2 unless exists $ENV{PERL_DESTRUCT_LEVEL};
da6a8325
GG
178# check existence of all symbols
179$ENV{PERL_DL_NONLAZY} = 1 unless exists $ENV{PERL_DL_NONLAZY};
3fb91a5e 180
4633a7c4 181$ENV{EMXSHELL} = 'sh'; # For OS/2
748a9306 182
28ffa55a 183if ($show_elapsed_time) { require Time::HiRes }
b49055e9 184my %timings = (); # testname => [@et] pairs if $show_elapsed_time.
7ebf5c89 185
18869dc6 186# Roll your own File::Find!
ac681bb3 187sub _find_tests { our @found=(); push @ARGV, _find_files('\.t$', $_[0]) }
c96083ea
JC
188sub _find_files {
189 my($patt, @dirs) = @_;
190 for my $dir (@dirs) {
191 opendir DIR, $dir or die "Trouble opening $dir: $!";
192 foreach my $f (sort { $a cmp $b } readdir DIR) {
193 next if $skip{$f};
194
195 my $fullpath = "$dir/$f";
196
197 if (-d $fullpath) {
198 _find_files($patt, $fullpath);
199 } elsif ($f =~ /$patt/) {
200 push @found, $fullpath;
201 }
7ebf5c89 202 }
24c841ba 203 }
c96083ea 204 @found;
24c841ba
MS
205}
206
3fd4b359
MS
207
208# Scan the text of the test program to find switches and special options
209# we might need to apply.
210sub _scan_test {
211 my($test, $type) = @_;
212
213 open(my $script, "<", $test) or die "Can't read $test.\n";
214 my $first_line = <$script>;
215
216 $first_line =~ tr/\0//d if $::with_utf16;
217
218 my $switch = "";
219 if ($first_line =~ /#!.*\bperl.*\s-\w*([tT])/) {
79b01a68 220 $switch = "-$1";
3fd4b359
MS
221 } else {
222 if ($::taintwarn) {
223 # not all tests are expected to pass with this option
79b01a68 224 $switch = '-t';
3fd4b359
MS
225 } else {
226 $switch = '';
227 }
228 }
229
230 my $file_opts = "";
231 if ($type eq 'deparse') {
232 # Look for #line directives which change the filename
233 while (<$script>) {
11ea18f2 234 $file_opts = $file_opts . ",-f$3$4"
3fd4b359
MS
235 if /^#\s*line\s+(\d+)\s+((\w+)|"([^"]+)")/;
236 }
237 }
238
491c9572 239 close $script;
84650816 240
70a78ba7 241 my $perl = $^O eq 'MSWin32' ? '.\perl' : './perl';
923e061d 242 my $lib = '../lib';
491c9572
VP
243 my $run_dir;
244 my $return_dir;
245
2adbc9b6
NC
246 $test =~ /^(.+)\/[^\/]+/;
247 my $dir = $1;
2adbc9b6 248 my $testswitch = $dir_to_switch{$dir};
5ed59b83 249 if (!defined $testswitch) {
55d965ca 250 if ($test =~ s!^(\.\./(cpan|dist|ext)/[^/]+)/t!t!) {
491c9572 251 $run_dir = $1;
2adbc9b6
NC
252 $return_dir = '../../t';
253 $lib = '../../lib';
1ff5bc37 254 $perl = '../../t/perl';
6d1e6673 255 $testswitch = "-I../.. -MTestInit=U2T";
4b05cdbd 256 if ($2 eq 'cpan' || $2 eq 'dist') {
41239ce7 257 if($abs{$run_dir}) {
55d965ca
NC
258 $testswitch = $testswitch . ',A';
259 }
260 if ($temp_no_core{$run_dir}) {
261 $testswitch = $testswitch . ',NC';
262 }
19641fd7
DM
263 if($temp_needs_dot{$run_dir}) {
264 $testswitch = $testswitch . ',DOT';
265 }
2adbc9b6 266 }
76cc22ec
NC
267 } elsif ($test =~ m!^\.\./lib!) {
268 $testswitch = '-I.. -MTestInit=U1'; # -T will remove . from @INC
2adbc9b6 269 } else {
30b6e591 270 $testswitch = '-I.. -MTestInit'; # -T will remove . from @INC
2adbc9b6 271 }
5ed59b83 272 }
923e061d 273
9fb03e61 274 my $utf8 = ($::with_utf8 || $::with_utf16) ? "-I$lib -Mutf8" : '';
84650816 275
9b37184d 276 my %options = (
491c9572
VP
277 perl => $perl,
278 lib => $lib,
279 test => $test,
280 run_dir => $run_dir,
281 return_dir => $return_dir,
282 testswitch => $testswitch,
283 utf8 => $utf8,
284 file => $file_opts,
285 switch => $switch,
9b37184d
VP
286 );
287
288 return \%options;
491c9572
VP
289}
290
d1fe220a
VP
291sub _cmd {
292 my($options, $type) = @_;
491c9572 293
d1fe220a 294 my $test = $options->{test};
491c9572 295
d1fe220a 296 my $cmd;
84650816 297 if ($type eq 'deparse') {
491c9572
VP
298 my $perl = "$options->{perl} $options->{testswitch}";
299 my $lib = $options->{lib};
d1fe220a
VP
300
301 $cmd = (
491c9572 302 "$perl $options->{switch} -I$lib -MO=-qq,Deparse,-sv1.,".
84650816
MS
303 "-l$::deparse_opts$options->{file} ".
304 "$test > $test.dp ".
d1fe220a
VP
305 "&& $perl $options->{switch} -I$lib $test.dp"
306 );
84650816
MS
307 }
308 elsif ($type eq 'perl') {
491c9572 309 my $perl = $options->{perl};
84650816
MS
310 my $redir = $^O eq 'VMS' ? '2>&1' : '';
311
312 if ($ENV{PERL_VALGRIND}) {
e07ce2e4 313 my $perl_supp = $options->{return_dir} ? "$options->{return_dir}/perl.supp" : "perl.supp";
c7b956bb 314 my $valgrind_exe = $ENV{VALGRIND} // 'valgrind';
be075caf
MH
315 if ($options->{run_dir}) {
316 $Valgrind_Log = "$options->{run_dir}/$Valgrind_Log";
317 }
84650816 318 my $vg_opts = $ENV{VG_OPTS}
be075caf 319 // "--log-file=$Valgrind_Log "
c7b956bb
JC
320 . "--suppressions=$perl_supp --leak-check=yes "
321 . "--leak-resolution=high --show-reachable=yes "
be075caf
MH
322 . "--num-callers=50 --track-origins=yes";
323 # Force logging if not asked for (so cachegrind reporting works below)
324 if ($vg_opts !~ /--log-file/) {
325 $vg_opts = "--log-file=$Valgrind_Log $vg_opts";
326 }
c7b956bb 327 $perl = "$valgrind_exe $vg_opts $perl";
84650816
MS
328 }
329
491c9572 330 my $args = "$options->{testswitch} $options->{switch} $options->{utf8}";
d1fe220a 331 $cmd = $perl . _quote_args($args) . " $test $redir";
84650816 332 }
d1fe220a
VP
333 return $cmd;
334}
335
9324df28
VP
336sub _before_fork {
337 my ($options) = @_;
338
339 if ($options->{run_dir}) {
340 my $run_dir = $options->{run_dir};
341 chdir $run_dir or die "Can't chdir to '$run_dir': $!";
342 }
343
be075caf
MH
344 # Remove previous valgrind output otherwise it will interfere
345 my $test = $options->{test};
346
347 (local $Valgrind_Log = "$test.valgrind-current") =~ s/^.*\///;
348
349 if ($ENV{PERL_VALGRIND} && -e $Valgrind_Log) {
350 unlink $Valgrind_Log
351 or warn "$0: Failed to unlink '$Valgrind_Log': $!\n";
352 }
353
9324df28
VP
354 return;
355}
356
357sub _after_fork {
358 my ($options) = @_;
359
360 if ($options->{return_dir}) {
361 my $return_dir = $options->{return_dir};
362 chdir $return_dir
363 or die "Can't chdir from '$options->{run_dir}' to '$return_dir': $!";
364 }
365
366 return;
367}
368
d1fe220a 369sub _run_test {
999051eb 370 my ($test, $type) = @_;
d1fe220a
VP
371
372 my $options = _scan_test($test, $type);
999051eb
VP
373 # $test might have changed if we're in ext/Foo, so don't use it anymore
374 # from now on. Use $options->{test} instead.
d1fe220a 375
9324df28 376 _before_fork($options);
d1fe220a
VP
377
378 my $cmd = _cmd($options, $type);
379
380 open(my $results, "$cmd |") or print "can't run '$cmd': $!.\n";
381
9324df28 382 _after_fork($options);
2adbc9b6 383
84650816
MS
384 # Our environment may force us to use UTF-8, but we can't be sure that
385 # anything we're reading from will be generating (well formed) UTF-8
386 # This may not be the best way - possibly we should unset ${^OPEN} up
387 # top?
388 binmode $results;
389
390 return $results;
391}
392
cc6ae9e5
CB
393sub _quote_args {
394 my ($args) = @_;
395 my $argstring = '';
396
397 foreach (split(/\s+/,$args)) {
398 # In VMS protect with doublequotes because otherwise
399 # DCL will lowercase -- unless already doublequoted.
400 $_ = q(").$_.q(") if ($^O eq 'VMS') && !/^\"/ && length($_) > 0;
11ea18f2 401 $argstring = $argstring . ' ' . $_;
cc6ae9e5
CB
402 }
403 return $argstring;
404}
405
6234cb77 406sub _populate_hash {
a3323f52 407 return unless defined $_[0];
6234cb77
NC
408 return map {$_, 1} split /\s+/, $_[0];
409}
410
a3323f52
NC
411sub _tests_from_manifest {
412 my ($extensions, $known_extensions) = @_;
6234cb77 413 my %skip;
a3323f52
NC
414 my %extensions = _populate_hash($extensions);
415 my %known_extensions = _populate_hash($known_extensions);
416
417 foreach (keys %known_extensions) {
11ea18f2 418 $skip{$_} = 1 unless $extensions{$_};
6234cb77 419 }
a3323f52
NC
420
421 my @results;
7ebf5c89 422 my $mani = '../MANIFEST';
7a315204 423 if (open(MANI, $mani)) {
18869dc6 424 while (<MANI>) {
a193a2db 425 if (m!^((?:cpan|dist|ext)/(\S+)/+(?:[^/\s]+\.t|test\.pl)|lib/\S+?(?:\.t|test\.pl))\s!) {
80ed0dea
DM
426 my $t = $1;
427 my $extension = $2;
2e0cc28b
KW
428
429 # XXX Generates way too many error lines currently. Skip for
430 # v5.22
431 next if $t =~ /^cpan/ && ord("A") != 65;
432
a3323f52 433 if (!$::core || $t =~ m!^lib/[a-z]!) {
6234cb77 434 if (defined $extension) {
b12cb1ba 435 $extension =~ s!/t(:?/\S+)*$!!;
6234cb77
NC
436 # XXX Do I want to warn that I'm skipping these?
437 next if $skip{$extension};
142f6a0d 438 my $flat_extension = $extension;
6ebb0601
CB
439 $flat_extension =~ s!-!/!g;
440 next if $skip{$flat_extension}; # Foo/Bar may live in Foo-Bar
6234cb77 441 }
7ebf5c89 442 my $path = "../$t";
a3323f52 443 push @results, $path;
80ed0dea 444 $::path_to_name{$path} = $t;
5a6e071d 445 }
7a315204
JH
446 }
447 }
35d88760 448 close MANI;
7a315204 449 } else {
f458b6e8 450 warn "$0: cannot open $mani: $!\n";
7a315204 451 }
a3323f52
NC
452 return @results;
453}
454
455unless (@ARGV) {
456 # base first, as TEST bails out if that can't run
457 # then comp, to validate that require works
458 # then run, to validate that -M works
459 # then we know we can -MTestInit for everything else, making life simpler
560a5958 460 foreach my $dir (qw(base comp run cmd io re opbasic op uni mro perf)) {
a3323f52
NC
461 _find_tests($dir);
462 }
cc306f49
NC
463 unless ($::core) {
464 _find_tests('porting');
465 _find_tests("lib");
466 }
a3323f52
NC
467 # Config.pm may be broken for make minitest. And this is only a refinement
468 # for skipping tests on non-default builds, so it is allowed to fail.
469 # What we want to to is make a list of extensions which we did not build.
470 my $configsh = '../config.sh';
471 my ($extensions, $known_extensions);
472 if (-f $configsh) {
473 open FH, $configsh or die "Can't open $configsh: $!";
474 while (<FH>) {
475 if (/^extensions=['"](.*)['"]$/) {
476 $extensions = $1;
477 }
478 elsif (/^known_extensions=['"](.*)['"]$/) {
479 $known_extensions = $1;
480 }
481 }
482 if (!defined $known_extensions) {
483 warn "No known_extensions line found in $configsh";
484 }
485 if (!defined $extensions) {
486 warn "No extensions line found in $configsh";
487 }
488 }
489 # The "complex" constructions of list return from a subroutine, and push of
490 # a list, might fail if perl is really hosed, but they aren't needed for
491 # make minitest, and the building of extensions will likely also fail if
492 # something is that badly wrong.
493 push @ARGV, _tests_from_manifest($extensions, $known_extensions);
80ed0dea 494 unless ($::core) {
80ed0dea 495 _find_tests('japh') if $::torture;
7e71d4a4 496 _find_tests('benchmark') if $::benchmark or $ENV{PERL_BENCHMARK};
ff5db609 497 _find_tests('bigmem') if $ENV{PERL_TEST_MEMORY};
e018f8be 498 }
8d063cd8
LW
499}
500
80ed0dea 501if ($::deparse) {
f193aa2f
MS
502 _testprogs('deparse', '', @ARGV);
503}
80ed0dea 504elsif ($::with_utf16) {
1de9afcd
RGS
505 for my $e (0, 1) {
506 for my $b (0, 1) {
507 print STDERR "# ENDIAN $e BOM $b\n";
508 my @UARGV;
509 for my $a (@ARGV) {
510 my $u = $a . "." . ($e ? "l" : "b") . "e" . ($b ? "b" : "");
511 my $f = $e ? "v" : "n";
512 push @UARGV, $u;
513 unlink($u);
514 if (open(A, $a)) {
515 if (open(U, ">$u")) {
90f6ca78 516 print U pack("$f", 0xFEFF) if $b;
1de9afcd
RGS
517 while (<A>) {
518 print U pack("$f*", unpack("C*", $_));
519 }
80ed0dea 520 close(U);
1de9afcd 521 }
80ed0dea 522 close(A);
1de9afcd
RGS
523 }
524 }
525 _testprogs('perl', '', @UARGV);
526 unlink(@UARGV);
527 }
528 }
529}
f193aa2f 530else {
f193aa2f 531 _testprogs('perl', '', @ARGV);
485988ae 532}
6ee623d5 533
bb365837 534sub _testprogs {
80ed0dea 535 my ($type, $args, @tests) = @_;
6ee623d5 536
485988ae 537 print <<'EOT' if ($type eq 'deparse');
7a315204 538------------------------------------------------------------------------------
485988ae 539TESTING DEPARSER
7a315204 540------------------------------------------------------------------------------
485988ae
RH
541EOT
542
80ed0dea 543 $::bad_files = 0;
73ddec28 544
cc6ae9e5 545 foreach my $t (@tests) {
80ed0dea 546 unless (exists $::path_to_name{$t}) {
7ebf5c89 547 my $tname = "t/$t";
f458b6e8 548 $::path_to_name{$t} = $tname;
cc6ae9e5 549 }
73ddec28 550 }
908801fe 551 my $maxlen = 0;
80ed0dea 552 foreach (@::path_to_name{@tests}) {
f7b9b043 553 s/\.\w+\z/ /; # space gives easy doubleclick to select fname
73ddec28
RB
554 my $len = length ;
555 $maxlen = $len if $len > $maxlen;
088b5126 556 }
908801fe 557 # + 3 : we want three dots between the test name and the "ok"
80ed0dea 558 my $dotdotdot = $maxlen + 3 ;
c7b956bb 559 my $grind_ct = 0; # count of non-empty valgrind reports
80ed0dea
DM
560 my $total_files = @tests;
561 my $good_files = 0;
33c0d182 562 my $tested_files = 0;
fb7ba3c8 563 my $totmax = 0;
ade55ef4 564 my %failed_tests;
c96083ea 565 my $toolnm; # valgrind, cachegrind, perf
80ed0dea 566
551405c4 567 while (my $test = shift @tests) {
25a2b27f
JC
568 my ($test_start_time, @starttimes) = 0;
569 if ($show_elapsed_time) {
570 $test_start_time = Time::HiRes::time();
571 # times() reports usage by TEST, but we want usage of each
572 # testprog it calls, so record accumulated times now,
573 # subtract them out afterwards. Ideally, we'd take times
574 # in BEGIN/END blocks (giving better visibility of self vs
575 # children of each testprog), but that would require some
576 # IPC to send results back here, or a completely different
8bdd21ca 577 # collection scheme (Storable isn't tuned for incremental use)
25a2b27f
JC
578 @starttimes = times;
579 }
bb365837
GS
580 if ($test =~ /^$/) {
581 next;
6ee623d5 582 }
2722144b
MH
583 if ($type eq 'deparse' && $test =~ $deparse_skips) {
584 next;
485988ae 585 }
80ed0dea 586 my $te = $::path_to_name{$test} . '.'
f7b9b043 587 x ($dotdotdot - length($::path_to_name{$test})) .' ';
cc6ae9e5
CB
588
589 if ($^O ne 'VMS') { # defer printing on VMS due to piping bug
590 print $te;
591 $te = '';
592 }
bb365837 593
be075caf
MH
594 (local $Valgrind_Log = "$test.valgrind-current") =~ s/^.*\///;
595
999051eb 596 my $results = _run_test($test, $type);
d638aca2 597
33c0d182 598 my $failure;
e1a5ed7a
JH
599 my $next = 0;
600 my $seen_leader = 0;
601 my $seen_ok = 0;
602 my $trailing_leader = 0;
603 my $max;
43fe0836 604 my %todo;
84650816 605 while (<$results>) {
cc6ae9e5 606 next if /^\s*$/; # skip blank lines
615b7a35
JM
607 if (/^1..$/ && ($^O eq 'VMS')) {
608 # VMS pipe bug inserts blank lines.
5403a9a2 609 my $l2 = <$results>;
615b7a35 610 if ($l2 =~ /^\s*$/) {
5403a9a2 611 $l2 = <$results>;
615b7a35
JM
612 }
613 $_ = '1..' . $l2;
614 }
80ed0dea 615 if ($::verbose) {
bb365837
GS
616 print $_;
617 }
21c74f43 618 unless (/^\#/) {
fb7ba3c8
JH
619 if ($trailing_leader) {
620 # shouldn't be anything following a postfix 1..n
621 $failure = 'FAILED--extra output after trailing 1..n';
622 last;
623 }
809908f7 624 if (/^1\.\.([0-9]+)( todo ([\d ]+))?/) {
fb7ba3c8
JH
625 if ($seen_leader) {
626 $failure = 'FAILED--seen duplicate leader';
627 last;
628 }
629 $max = $1;
630 %todo = map { $_ => 1 } split / /, $3 if $3;
631 $totmax = $totmax + $max;
632 $tested_files = $tested_files + 1;
633 if ($seen_ok) {
634 # 1..n appears at end of file
635 $trailing_leader = 1;
636 if ($next != $max) {
637 $failure = "FAILED--expected $max tests, saw $next";
20f82676
DM
638 last;
639 }
640 }
fb7ba3c8
JH
641 else {
642 $next = 0;
20f82676 643 }
fb7ba3c8 644 $seen_leader = 1;
bb365837
GS
645 }
646 else {
fb7ba3c8
JH
647 if (/^(not )?ok(?: (\d+))?[^\#]*(\s*\#.*)?/) {
648 unless ($seen_leader) {
649 unless ($seen_ok) {
650 $next = 0;
651 }
652 }
653 $seen_ok = 1;
11ea18f2 654 $next = $next + 1;
fb7ba3c8
JH
655 my($not, $num, $extra, $istodo) = ($1, $2, $3, 0);
656 $num = $next unless $num;
657
658 if ($num == $next) {
f458b6e8 659
eac7c728
MB
660 # SKIP is essentially the same as TODO for t/TEST
661 # this still conforms to TAP:
464a08e7 662 # http://testanything.org/wiki/index.php/TAP_specification
eac7c728 663 $extra and $istodo = $extra =~ /#\s*(?:TODO|SKIP)\b/;
21c74f43
A
664 $istodo = 1 if $todo{$num};
665
666 if( $not && !$istodo ) {
20f82676 667 $failure = "FAILED at test $num";
21c74f43
A
668 last;
669 }
20f82676 670 }
fb7ba3c8
JH
671 else {
672 $failure ="FAILED--expected test $next, saw test $num";
673 last;
674 }
f458b6e8
MS
675 }
676 elsif (/^Bail out!\s*(.*)/i) { # magic words
677 die "FAILED--Further testing stopped" . ($1 ? ": $1\n" : ".\n");
bb365837
GS
678 }
679 else {
dbf51d07
YST
680 # module tests are allowed extra output,
681 # because Test::Harness allows it
4d834435 682 next if $test =~ /^\W*(cpan|dist|ext|lib)\b/;
a5890677 683 $failure = "FAILED--unexpected output at test $next";
20f82676 684 last;
bb365837 685 }
8d063cd8
LW
686 }
687 }
688 }
983c6181
KW
689 my @junk = <$results>; # dump remaining output to prevent SIGPIPE
690 # (so far happens only on os390)
84650816 691 close $results;
983c6181 692 undef @junk;
20f82676 693
33c0d182 694 if (not defined $failure) {
fb7ba3c8 695 $failure = 'FAILED--no leader found' unless $seen_leader;
20f82676
DM
696 }
697
be075caf
MH
698 _check_valgrind(\$toolnm, \$grind_ct, \$test);
699
2722144b 700 if ($type eq 'deparse' && !$ENV{KEEP_DEPARSE_FILES}) {
485988ae
RH
701 unlink "./$test.dp";
702 }
33c0d182 703 if (not defined $failure and $next != $max) {
fb7ba3c8 704 $failure="FAILED--expected $max tests, saw $next";
20f82676
DM
705 }
706
33c0d182
JH
707 if( !defined $failure # don't mask a test failure
708 and $? )
709 {
343bc60d
MS
710 $failure = "FAILED--non-zero wait status: $?";
711 }
712
2722144b
MH
713 # Deparse? Should it have passed or failed?
714 if ($type eq 'deparse' && $test =~ $deparse_failures) {
715 if (!$failure) {
716 # Wait, it didn't fail? Great news! Tell someone!
717 $failure = "FAILED--all tests passed but test should have failed";
718 } else {
719 # Bah, still failing. Mask it.
720 print "${te}skipped\n";
721 $tested_files = $tested_files - 1;
722 next;
723 }
724 }
725
33c0d182 726 if (defined $failure) {
20f82676 727 print "${te}$failure\n";
11ea18f2 728 $::bad_files = $::bad_files + 1;
25a4a90c
KW
729 if ($test =~ /^base/ && ! defined &DynaLoader::boot_DynaLoader) {
730 # Die if running under minitest (no DynaLoader). Otherwise
731 # keep going, as we know that Perl basically works, or we
732 # would not have been able to actually compile it all the way.
733 die "Failed a basic test ($test) under minitest -- cannot continue.\n";
20f82676 734 }
11ea18f2 735 $failed_tests{$test} = 1;
20f82676
DM
736 }
737 else {
fb7ba3c8 738 if ($max) {
b49055e9 739 my ($elapsed, $etms) = ("", 0);
551405c4 740 if ( $show_elapsed_time ) {
b49055e9 741 $etms = (Time::HiRes::time() - $test_start_time) * 1000;
25a2b27f
JC
742 $elapsed = sprintf(" %8.0f ms", $etms);
743
744 my (@endtimes) = times;
745 $endtimes[$_] -= $starttimes[$_] for 0..$#endtimes;
746 splice @endtimes, 0, 2; # drop self/harness times
747 $_ *= 1000 for @endtimes; # and scale to ms
748 $timings{$test} = [$etms,@endtimes];
749 $elapsed .= sprintf(" %5.0f ms", $_) for @endtimes;
551405c4
AL
750 }
751 print "${te}ok$elapsed\n";
11ea18f2 752 $good_files = $good_files + 1;
bb365837
GS
753 }
754 else {
6b202754 755 print "${te}skipped\n";
11ea18f2 756 $tested_files = $tested_files - 1;
bb365837 757 }
bcce72a7 758 }
551405c4 759 } # while tests
8d063cd8 760
80ed0dea 761 if ($::bad_files == 0) {
20f82676 762 if ($good_files) {
bb365837
GS
763 print "All tests successful.\n";
764 # XXX add mention of 'perlbug -ok' ?
765 }
766 else {
767 die "FAILED--no tests were run for some reason.\n";
768 }
8d063cd8 769 }
bb365837 770 else {
80ed0dea 771 my $pct = $tested_files ? sprintf("%.2f", ($tested_files - $::bad_files) / $tested_files * 100) : "0.00";
ade55ef4
AL
772 my $s = $::bad_files == 1 ? "" : "s";
773 warn "Failed $::bad_files test$s out of $tested_files, $pct% okay.\n";
774 for my $test ( sort keys %failed_tests ) {
775 print "\t$test\n";
bb365837 776 }
4e4732c1 777 warn <<'SHRDLU_1';
f7d228c6
JH
778### Since not all tests were successful, you may want to run some of
779### them individually and examine any diagnostic messages they produce.
780### See the INSTALL document's section on "make test".
4e4732c1 781SHRDLU_1
80ed0dea 782 warn <<'SHRDLU_2' if $good_files / $total_files > 0.8;
f7d228c6
JH
783### You have a good chance to get more information by running
784### ./perl harness
785### in the 't' directory since most (>=80%) of the tests succeeded.
4e4732c1 786SHRDLU_2
f458b6e8 787 if (eval {require Config; import Config; 1}) {
80ed0dea 788 if ($::Config{usedl} && (my $p = $::Config{ldlibpthname})) {
4e4732c1 789 warn <<SHRDLU_3;
f7d228c6
JH
790### You may have to set your dynamic library search path,
791### $p, to point to the build directory:
4e4732c1 792SHRDLU_3
f458b6e8 793 if (exists $ENV{$p} && $ENV{$p} ne '') {
4e4732c1 794 warn <<SHRDLU_4a;
f7d228c6
JH
795### setenv $p `pwd`:\$$p; cd t; ./perl harness
796### $p=`pwd`:\$$p; export $p; cd t; ./perl harness
797### export $p=`pwd`:\$$p; cd t; ./perl harness
4e4732c1 798SHRDLU_4a
f458b6e8 799 } else {
4e4732c1 800 warn <<SHRDLU_4b;
f7d228c6
JH
801### setenv $p `pwd`; cd t; ./perl harness
802### $p=`pwd`; export $p; cd t; ./perl harness
803### export $p=`pwd`; cd t; ./perl harness
4e4732c1 804SHRDLU_4b
f458b6e8 805 }
4e4732c1 806 warn <<SHRDLU_5;
f7d228c6
JH
807### for csh-style shells, like tcsh; or for traditional/modern
808### Bourne-style shells, like bash, ksh, and zsh, respectively.
4e4732c1 809SHRDLU_5
f458b6e8 810 }
afd33fa9 811 }
bb365837 812 }
94708f6d 813 printf "Elapsed: %d sec\n", time() - $t0;
80ed0dea 814 my ($user,$sys,$cuser,$csys) = times;
8e03ad8f
JC
815 my $tot = sprintf("u=%.2f s=%.2f cu=%.2f cs=%.2f scripts=%d tests=%d",
816 $user,$sys,$cuser,$csys,$tested_files,$totmax);
817 print "$tot\n";
818 if ($good_files) {
819 if (-d $show_elapsed_time) {
56e28cb0
JH
820 # HARNESS_TIMER = <a-directory>. Save timings etc to
821 # storable file there. NB: the test cds to ./t/, so
822 # relative path must account for that, ie ../../perf
823 # points to dir next to source tree.
8e03ad8f 824 require Storable;
133d407a
JH
825 my @dt = localtime;
826 $dt[5] += 1900; $dt[4] += 1; # fix year, month
827 my $fn = "$show_elapsed_time/".join('-', @dt[5,4,3,2,1]).".ttimes";
56e28cb0 828 Storable::store({ perf => \%timings,
8e03ad8f
JC
829 gather_conf_platform_info(),
830 total => $tot,
831 }, $fn);
832 print "wrote storable file: $fn\n";
833 }
834 }
be075caf
MH
835
836 _cleanup_valgrind(\$toolnm, \$grind_ct);
6ee623d5 837}
80ed0dea 838exit ($::bad_files != 0);
ade55ef4 839
8e03ad8f
JC
840# Collect platform, config data that should allow comparing
841# performance data between different machines. With enough data,
842# and/or clever statistical analysis, it should be possible to
843# determine the effect of config choices, more memory, etc
844
845sub gather_conf_platform_info {
846 # currently rather quick & dirty, and subject to change
847 # for both content and format.
848 require Config;
849 my (%conf, @platform) = ();
850 $conf{$_} = $Config::Config{$_} for
851 grep /cc|git|config_arg\d+/, keys %Config::Config;
852 if (-f '/proc/cpuinfo') {
853 open my $fh, '/proc/cpuinfo' or warn "$!: /proc/cpuinfo\n";
854 @platform = grep /name|cpu/, <$fh>;
855 chomp $_ for @platform;
856 }
857 unshift @platform, $^O;
858
859 return (
860 conf => \%conf,
861 platform => {cpu => \@platform,
862 mem => [ grep s/\s+/ /,
863 grep chomp, `free` ],
864 load => [ grep chomp, `uptime` ],
865 },
866 host => (grep chomp, `hostname -f`),
56e28cb0 867 version => '0.03', # bump for conf, platform, or data collection changes
8e03ad8f
JC
868 );
869}
870
be075caf
MH
871sub _check_valgrind {
872 return unless $ENV{PERL_VALGRIND};
873
874 my ($toolnm, $grind_ct, $test) = @_;
875
876 $$toolnm = $ENV{VALGRIND};
877 $$toolnm =~ s|.*/||; # keep basename
878 my @valgrind; # gets content of file
879 if (-e $Valgrind_Log) {
880 if (open(V, $Valgrind_Log)) {
881 @valgrind = <V>;
882 close V;
883 } else {
884 warn "$0: Failed to open '$Valgrind_Log': $!\n";
885 }
886 }
887 if ($ENV{VG_OPTS} =~ /(cachegrind)/ or $$toolnm =~ /(perf)/) {
888 $$toolnm = $1;
889 if ($$toolnm eq 'perf') {
e73fd51e 890 # append perfs subcommand, not just stat
be075caf
MH
891 my ($sub) = split /\s/, $ENV{VG_OPTS};
892 $$toolnm .= "-$sub";
893 }
894 if (rename $Valgrind_Log, "$$test.$$toolnm") {
895 $$grind_ct++;
896 } else {
897 warn "$0: Failed to create '$$test.$$toolnm': $!\n";
898 }
899 }
900 elsif (@valgrind) {
901 my $leaks = 0;
902 my $errors = 0;
903 for my $i (0..$#valgrind) {
904 local $_ = $valgrind[$i];
905 if (/^==\d+== ERROR SUMMARY: (\d+) errors? /) {
906 $errors = $errors + $1; # there may be multiple error summaries
907 } elsif (/^==\d+== LEAK SUMMARY:/) {
908 for my $off (1 .. 4) {
909 if ($valgrind[$i+$off] =~
910 /(?:lost|reachable):\s+\d+ bytes in (\d+) blocks/) {
911 $leaks = $leaks + $1;
912 }
913 }
914 }
915 }
916 if ($errors or $leaks) {
917 if (rename $Valgrind_Log, "$$test.valgrind") {
918 $$grind_ct = $$grind_ct + 1;
919 } else {
920 warn "$0: Failed to create '$$test.valgrind': $!\n";
921 }
922 }
923 } else {
924 # Quiet wasn't asked for? Something may be amiss
925 if ($ENV{VG_OPTS} && $ENV{VG_OPTS} !~ /(^|\s)(-q|--quiet)(\s|$)/) {
926 warn "No valgrind output?\n";
927 }
928 }
929 if (-e $Valgrind_Log) {
930 unlink $Valgrind_Log
931 or warn "$0: Failed to unlink '$Valgrind_Log': $!\n";
932 }
933}
934
935sub _cleanup_valgrind {
936 return unless $ENV{PERL_VALGRIND};
937
938 my ($toolnm, $grind_ct) = @_;
939 my $s = $$grind_ct == 1 ? '' : 's';
940 print "$$grind_ct valgrind report$s created.\n", ;
941 if ($$toolnm eq 'cachegrind') {
942 # cachegrind leaves a lot of cachegrind.out.$pid litter
943 # around the tree, find and delete them
944 unlink _find_files('cachegrind.out.\d+$',
945 qw ( ../t ../cpan ../ext ../dist/ ));
946 }
947}
948
2722144b
MH
949# Generate regexps of known bad filenames / skips from Porting/deparse-skips.txt
950my $in;
951
952sub _process_deparse_config {
953 my @deparse_failures;
954 my @deparse_skips;
955
956 my $f = '../Porting/deparse-skips.txt';
957
958 my $skips;
959 if (!open($skips, '<', $f)) {
960 warn "Failed to find $f: $!\n";
961 return;
962 }
963
964 while(<$skips>) {
965 if (/__DEPARSE_FAILURES__/) {
966 $in = \@deparse_failures; next;
967 } elsif (/__DEPARSE_SKIPS__/) {
968 $in = \@deparse_skips; next;
969 } elsif (!$in) {
970 next;
971 }
972
973 s/#.*$//; # Kill comments
974 s/\s+$//; # And trailing whitespace
975
976 next unless $_;
977
978 push @$in, $_;
979 }
980
981 for my $f (@deparse_failures, @deparse_skips) {
982 if ($f =~ m|/$|) { # Dir? Skip everything below it
983 $f = qr/\Q$f\E.*/;
984 } else {
985 $f = qr/\Q$f\E/;
986 }
987 }
988
989 $deparse_failures = join('|', @deparse_failures);
990 $deparse_failures = qr/^(?:$deparse_failures)$/;
991
992 $deparse_skips = join('|', @deparse_skips);
993 $deparse_skips = qr/^(?:$deparse_skips)$/;
994}
995
ade55ef4 996# ex: set ts=8 sts=4 sw=4 noet: