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 # Cheesy version of Getopt::Std. Maybe we should replace it with that.
10 foreach my $idx (0..$#ARGV) {
11 next unless $ARGV[$idx] =~ /^-(\S+)$/;
12 $verbose = 1 if $1 eq 'v';
13 $with_utf= 1 if $1 eq 'utf8';
14 if ($1 =~ /^deparse(,.+)?$/) {
18 splice(@ARGV, $idx, 1);
22 chdir 't' if -f 't/TEST';
24 die "You need to run \"make test\" first to set things up.\n"
25 unless -e 'perl' or -e 'perl.exe';
27 if ($ENV{PERL_3LOG}) { # Tru64 third(1) tool, see perlhack
28 unless (-x 'perl.third') {
29 unless (-x '../perl.third') {
30 die "You need to run \"make perl.third first.\n";
33 print "Symlinking ../perl.third as perl.third...\n";
34 die "Failed to symlink: $!\n"
35 unless symlink("../perl.third", "perl.third");
36 die "Symlinked but no executable perl.third: $!\n"
37 unless -x 'perl.third';
42 # check leakage for embedders
43 $ENV{PERL_DESTRUCT_LEVEL} = 2 unless exists $ENV{PERL_DESTRUCT_LEVEL};
45 $ENV{EMXSHELL} = 'sh'; # For OS/2
47 # Roll your own File::Find!
50 my $curdir = File::Spec->curdir;
51 my $updir = File::Spec->updir;
55 opendir DIR, $dir || die "Trouble opening $dir: $!";
56 foreach my $f (sort { $a cmp $b } readdir DIR) {
57 next if $f eq $curdir or $f eq $updir;
59 my $fullpath = File::Spec->catdir($dir, $f);
61 _find_tests($fullpath) if -d $fullpath;
62 push @ARGV, $fullpath if $f =~ /\.t$/;
67 foreach my $dir (qw(base comp cmd run io op pragma lib pod)) {
70 my $mani = File::Spec->catdir($updir, "MANIFEST");
71 if (open(MANI, $mani)) {
73 if (m!^((?:ext|lib)/.+/t/[^/]+\.t)\s!) {
75 $OVER{$1} = File::Spec->catdir($updir, $1);
79 warn "$0: cannot open $mani: $!\n";
83 # Tests known to cause infinite loops for the perlcc tests.
84 # %infinite = ( 'comp/require.t', 1, 'op/bop.t', 1, 'lib/hostname.t', 1 );
88 _testprogs('deparse', @ARGV);
90 _testprogs('perl', @ARGV);
91 _testprogs('compile', @ARGV) if (-e "../testcompile");
98 print <<'EOT' if ($type eq 'compile');
99 ------------------------------------------------------------------------------
101 ------------------------------------------------------------------------------
104 print <<'EOT' if ($type eq 'deparse');
105 ------------------------------------------------------------------------------
107 ------------------------------------------------------------------------------
110 $ENV{PERLCC_TIMEOUT} = 120
111 if ($type eq 'compile' && !$ENV{PERLCC_TIMEOUT});
121 $maxlen = $len if $len > $maxlen;
123 # +3 : we want three dots between the test name and the "ok"
125 $dotdotdot = $maxlen + 3 - 2;
126 while ($test = shift @tests) {
128 if ( $infinite{$test} && $type eq 'compile' ) {
129 print STDERR "$test creates infinite loop! Skipping.\n";
135 if ($type eq 'deparse') {
136 if ($test eq "comp/redef.t") {
137 # Redefinition happens at compile time
140 elsif ($test eq "lib/switch.t") {
141 # B::Deparse doesn't support source filtering
147 print "$te" . '.' x ($dotdotdot - length($te));
149 $test = $OVER{$test} if exists $OVER{$test};
151 open(SCRIPT,"<$test") or die "Can't run $test.\n";
153 close(SCRIPT) unless ($type eq 'deparse');
154 if (/#!.*perl(.*)$/) {
157 # Must protect uppercase switches with "" on command line
158 $switch =~ s/-([A-Z]\S*)/"-$1"/g;
166 if ($type eq 'deparse') {
167 # Look for #line directives which change the filename
169 $file_opts .= ",-f$3$4"
170 if /^#\s*line\s+(\d+)\s+((\w+)|"([^"]+)")/;
175 $test = $OVER{$test} if exists $OVER{$test};
177 my $utf = $with_utf ? '-I../lib -Mutf8' : '';
178 my $testswitch = '-I. -MTestInit'; # -T will strict . from @INC
179 if ($type eq 'deparse') {
181 "./perl $testswitch $switch -I../lib -MO=-qq,Deparse,".
182 "-l$deparse_opts$file_opts ".
184 "&& ./perl $testswitch $switch -I../lib $test.dp |";
185 open(RESULTS, $deparse)
186 or print "can't deparse '$deparse': $!.\n";
188 elsif ($type eq 'perl') {
189 my $run = "./perl $testswitch $switch $utf $test |";
190 open(RESULTS,$run) or print "can't run '$run': $!.\n";
194 "./perl $testswitch -I../lib ../utils/perlcc -o ".
195 "$test.plc $utf $test ".
197 open(RESULTS, $compile)
198 or print "can't compile '$compile': $!.\n";
209 if (/^1\.\.([0-9]+)( todo ([\d ]+))?/) {
211 %todo = map { $_ => 1 } split / /, $3 if $3;
218 if (/^(not )?ok (\d+)(\s*#.*)?/ &&
221 my($not, $num, $extra) = ($1, $2, $3);
222 my($istodo) = $extra =~ /^\s*#\s*TODO/ if $extra;
223 $istodo = 1 if $todo{$num};
225 if( $not && !$istodo ) {
234 elsif (/^Bail out!\s*(.*)/i) { # magic words
235 die "FAILED--Further testing stopped" . ($1 ? ": $1\n" : ".\n");
244 if ($type eq 'deparse') {
247 if ($ENV{PERL_3LOG}) {
251 rename("perl.3log", "perl.3log.$tpp");
254 if ($ok && $next == $max) {
260 print "skipping test on this platform\n";
266 print "FAILED at test $next\n";
270 die "Failed a basic test--cannot continue.\n";
277 print "All tests successful.\n";
278 # XXX add mention of 'perlbug -ok' ?
281 die "FAILED--no tests were run for some reason.\n";
285 $pct = $files ? sprintf("%.2f", ($files - $bad) / $files * 100) : "0.00";
287 warn "Failed 1 test script out of $files, $pct% okay.\n";
290 warn "Failed $bad test scripts out of $files, $pct% okay.\n";
293 ### Since not all tests were successful, you may want to run some
294 ### of them individually and examine any diagnostic messages they
295 ### produce. See the INSTALL document's section on "make test".
296 ### If you are testing the compiler, then ignore this message
299 ### in the directory ./t.
301 warn <<'SHRDLU' if $good / $total > 0.8;
303 ### Since most tests were successful, you have a good chance to
304 ### get information with better granularity by running
306 ### in directory ./t.
309 ($user,$sys,$cuser,$csys) = times;
310 print sprintf("u=%g s=%g cu=%g cs=%g scripts=%d tests=%d\n",
311 $user,$sys,$cuser,$csys,$files,$totmax);