3 # This is written in a peculiar style, since we're trying to avoid
4 # most of the constructs we'll be testing for.
8 # Let tests know they're running in the perl core. Useful for modules
9 # which live dual lives on CPAN.
12 # Cheesy version of Getopt::Std. Maybe we should replace it with that.
15 foreach my $idx (0..$#ARGV) {
16 push( @argv, $ARGV[$idx] ), next unless $ARGV[$idx] =~ /^-(\S+)$/;
17 $core = 1 if $1 eq 'core';
18 $verbose = 1 if $1 eq 'v';
19 $with_utf= 1 if $1 eq 'utf8';
20 $byte_compile = 1 if $1 eq 'bytecompile';
21 $compile = 1 if $1 eq 'compile';
22 if ($1 =~ /^deparse(,.+)?$/) {
30 chdir 't' if -f 't/TEST';
32 die "You need to run \"make test\" first to set things up.\n"
33 unless -e 'perl' or -e 'perl.exe' or -e 'perl.pm';
35 if ($ENV{PERL_3LOG}) { # Tru64 third(1) tool, see perlhack
36 unless (-x 'perl.third') {
37 unless (-x '../perl.third') {
38 die "You need to run \"make perl.third first.\n";
41 print "Symlinking ../perl.third as perl.third...\n";
42 die "Failed to symlink: $!\n"
43 unless symlink("../perl.third", "perl.third");
44 die "Symlinked but no executable perl.third: $!\n"
45 unless -x 'perl.third';
50 # check leakage for embedders
51 $ENV{PERL_DESTRUCT_LEVEL} = 2 unless exists $ENV{PERL_DESTRUCT_LEVEL};
53 $ENV{EMXSHELL} = 'sh'; # For OS/2
55 # Roll your own File::Find!
58 my $curdir = File::Spec->curdir;
59 my $updir = File::Spec->updir;
63 opendir DIR, $dir || die "Trouble opening $dir: $!";
64 foreach my $f (sort { $a cmp $b } readdir DIR) {
65 next if $f eq $curdir or $f eq $updir;
67 my $fullpath = File::Spec->catdir($dir, $f);
69 _find_tests($fullpath) if -d $fullpath;
70 push @ARGV, $fullpath if $f =~ /\.t$/;
75 foreach my $dir (qw(base comp cmd run io op uni)) {
78 _find_tests("lib") unless $core;
79 my $mani = File::Spec->catdir($updir, "MANIFEST");
80 if (open(MANI, $mani)) {
81 while (<MANI>) { # similar code in t/harness
82 if (m!^(ext/\S+/([^/]+\.t|test\.pl)|lib/\S+?(\.t|test\.pl))\s!) {
84 if (!$core || $t =~ m!^lib/[a-z]!)
86 $path = File::Spec->catdir($updir, $t);
93 warn "$0: cannot open $mani: $!\n";
98 # Tests known to cause infinite loops for the perlcc tests.
99 # %infinite = ( 'comp/require.t', 1, 'op/bop.t', 1, 'lib/hostname.t', 1 );
103 _testprogs('deparse', '', @ARGV);
105 elsif( $compile || $byte_compile ) {
106 _testprogs('compile', '', @ARGV) if $compile;
107 _testprogs('compile', '-B', @ARGV) if $byte_compile;
110 _testprogs('compile', '', @ARGV) if -e "../testcompile";
111 _testprogs('perl', '', @ARGV);
119 print <<'EOT' if ($type eq 'compile');
120 ------------------------------------------------------------------------------
122 ------------------------------------------------------------------------------
125 print <<'EOT' if ($type eq 'deparse');
126 ------------------------------------------------------------------------------
128 ------------------------------------------------------------------------------
131 $ENV{PERLCC_TIMEOUT} = 120
132 if ($type eq 'compile' && !$ENV{PERLCC_TIMEOUT});
141 $name{$_} = File::Spec->catdir('t',$_) unless exists $name{$_};
144 foreach (@name{@tests}) {
147 $maxlen = $len if $len > $maxlen;
149 # + 3 : we want three dots between the test name and the "ok"
150 $dotdotdot = $maxlen + 3 ;
151 while ($test = shift @tests) {
153 if ( $infinite{$test} && $type eq 'compile' ) {
154 print STDERR "$test creates infinite loop! Skipping.\n";
160 if ($type eq 'deparse') {
161 if ($test eq "comp/redef.t") {
162 # Redefinition happens at compile time
165 elsif ($test eq "lib/switch.t") {
166 # B::Deparse doesn't support source filtering
171 print "$te" . '.' x ($dotdotdot - length($te));
173 $test = $OVER{$test} if exists $OVER{$test};
175 open(SCRIPT,"<$test") or die "Can't run $test.\n";
177 close(SCRIPT) unless ($type eq 'deparse');
178 if (/#!.*\bperl.*-\w*([tT])/) {
185 my $test_executable; # for 'compile' tests
187 if ($type eq 'deparse') {
188 # Look for #line directives which change the filename
190 $file_opts .= ",-f$3$4"
191 if /^#\s*line\s+(\d+)\s+((\w+)|"([^"]+)")/;
196 my $utf = $with_utf ? '-I../lib -Mutf8' : '';
197 my $testswitch = '-I. -MTestInit'; # -T will strict . from @INC
198 if ($type eq 'deparse') {
200 "./perl $testswitch $switch -I../lib -MO=-qq,Deparse,".
201 "-l$deparse_opts$file_opts ".
203 "&& ./perl $testswitch $switch -I../lib $test.dp |";
204 open(RESULTS, $deparse)
205 or print "can't deparse '$deparse': $!.\n";
207 elsif ($type eq 'perl') {
208 my $perl = $ENV{PERL} || './perl';
209 my $run = "$perl $testswitch $switch $utf $test |";
210 open(RESULTS,$run) or print "can't run '$run': $!.\n";
214 my $pl2c = "$testswitch -I../lib ../utils/perlcc --testsuite " .
215 # -O9 for good measure, -fcog is broken ATM
216 "$switch -Wb=-O9,-fno-cog -L .. " .
217 "-I \".. ../lib/CORE\" $args $utf $test -o ";
219 if( $^O eq 'MSWin32' ) {
220 $test_executable = "$test.exe";
221 # hopefully unused name...
222 open HACK, "> xweghyz.pl";
226 open HACK, '.\\perl $pl2c $test_executable |';
227 # cl.exe prints the name of the .c file on stdout (\%^\$^#)
228 while(<HACK>) {m/^\w+\.[cC]\$/ && next;print}
229 open HACK, '$test_executable |';
230 while(<HACK>) {print}
233 $compile = 'xweghyz.pl |';
236 $test_executable = "$test.plc";
237 $compile = "./perl $pl2c $test_executable && $test_executable |";
239 unlink $test_executable if -f $test_executable;
240 open(RESULTS, $compile)
241 or print "can't compile '$compile': $!.\n";
251 if (/^1\.\.([0-9]+)( todo ([\d ]+))?/) {
253 %todo = map { $_ => 1 } split / /, $3 if $3;
260 if (/^(not )?ok (\d+)[^#]*(\s*#.*)?/ &&
263 my($not, $num, $extra) = ($1, $2, $3);
264 my($istodo) = $extra =~ /^\s*#\s*TODO/ if $extra;
265 $istodo = 1 if $todo{$num};
267 if( $not && !$istodo ) {
276 elsif (/^Bail out!\s*(.*)/i) { # magic words
277 die "FAILED--Further testing stopped" . ($1 ? ": $1\n" : ".\n");
286 if ($type eq 'deparse') {
289 if ($ENV{PERL_3LOG}) {
294 rename("perl.3log", "perl.3log.$tpp") ||
295 die "rename: perl3.log to perl.3log.$tpp: $!\n";
298 # test if the compiler compiled something
299 if( $type eq 'compile' && !-e "$test_executable" ) {
301 print "Test did not compile\n";
303 if ($ok && $next == $max ) {
309 print "skipping test on this platform\n";
315 print "FAILED at test $next\n";
319 die "Failed a basic test--cannot continue.\n";
326 print "All tests successful.\n";
327 # XXX add mention of 'perlbug -ok' ?
330 die "FAILED--no tests were run for some reason.\n";
334 $pct = $files ? sprintf("%.2f", ($files - $bad) / $files * 100) : "0.00";
336 warn "Failed 1 test script out of $files, $pct% okay.\n";
339 warn "Failed $bad test scripts out of $files, $pct% okay.\n";
342 ### Since not all tests were successful, you may want to run some of
343 ### them individually and examine any diagnostic messages they produce.
344 ### See the INSTALL document's section on "make test".
346 warn <<'SHRDLU_2' if $good / $total > 0.8;
347 ### You have a good chance to get more information by running
349 ### in the 't' directory since most (>=80%) of the tests succeeded.
351 if (eval {require Config; import Config; 1}) {
352 if ($Config{usedl} && (my $p = $Config{ldlibpthname})) {
354 ### You may have to set your dynamic library search path,
355 ### $p, to point to the build directory:
357 if (exists $ENV{$p} && $ENV{$p} ne '') {
359 ### setenv $p `pwd`:\$$p; cd t; ./perl harness
360 ### $p=`pwd`:\$$p; export $p; cd t; ./perl harness
361 ### export $p=`pwd`:\$$p; cd t; ./perl harness
365 ### setenv $p `pwd`; cd t; ./perl harness
366 ### $p=`pwd`; export $p; cd t; ./perl harness
367 ### export $p=`pwd`; cd t; ./perl harness
371 ### for csh-style shells, like tcsh; or for traditional/modern
372 ### Bourne-style shells, like bash, ksh, and zsh, respectively.
377 ($user,$sys,$cuser,$csys) = times;
378 print sprintf("u=%g s=%g cu=%g cs=%g scripts=%d tests=%d\n",
379 $user,$sys,$cuser,$csys,$files,$totmax);