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