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