MANIFEST is needlessly held open for entire duration of "make test"
[p5sagit/p5-mst-13.2.git] / t / TEST
1 #!./perl
2
3 # This is written in a peculiar style, since we're trying to avoid
4 # most of the constructs we'll be testing for.
5
6 $| = 1;
7
8 # Let tests know they're running in the perl core.  Useful for modules
9 # which live dual lives on CPAN.
10 $ENV{PERL_CORE} = 1;
11
12 # Cheesy version of Getopt::Std.  Maybe we should replace it with that.
13 @argv = ();
14 if ($#ARGV >= 0) {
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(,.+)?$/) {
23             $deparse = 1;
24             $deparse_opts = $1;
25         }
26     }
27 }
28 @ARGV = @argv;
29
30 chdir 't' if -f 't/TEST';
31
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';
34
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";
39         }
40         else {
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';
46         }
47     }
48 }
49
50 # check leakage for embedders
51 $ENV{PERL_DESTRUCT_LEVEL} = 2 unless exists $ENV{PERL_DESTRUCT_LEVEL};
52
53 $ENV{EMXSHELL} = 'sh';        # For OS/2
54
55 # Roll your own File::Find!
56 use TestInit;
57 use File::Spec;
58 my $curdir = File::Spec->curdir;
59 my $updir  = File::Spec->updir;
60
61 sub _find_tests {
62     my($dir) = @_;
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;
66
67         my $fullpath = File::Spec->catdir($dir, $f);
68
69         _find_tests($fullpath) if -d $fullpath;
70         push @ARGV, $fullpath if $f =~ /\.t$/;
71     }
72 }
73
74 unless (@ARGV) {
75     foreach my $dir (qw(base comp cmd run io op uni)) {
76         _find_tests($dir);
77     }
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!) {
83                 $t = $1;
84                 if (!$core || $t =~ m!^lib/[a-z]!)
85                 {
86                     $path = File::Spec->catdir($updir, $t);
87                     push @ARGV, $path;
88                     $name{$path} = $t;
89                 }
90             }
91         }
92         close MANI;
93     } else {
94         warn "$0: cannot open $mani: $!\n";
95     }
96     _find_tests('pod')  unless $core;
97     _find_tests('x2p')  unless $core;
98     _find_tests('japh') unless $core;
99 }
100
101 # Tests known to cause infinite loops for the perlcc tests.
102 # %infinite = ( 'comp/require.t', 1, 'op/bop.t', 1, 'lib/hostname.t', 1 );
103 %infinite = ();
104
105 if ($deparse) {
106     _testprogs('deparse', '',   @ARGV);
107 }
108 elsif( $compile || $byte_compile ) { 
109     _testprogs('compile', '',   @ARGV) if $compile;
110     _testprogs('compile', '-B', @ARGV) if $byte_compile;
111 }
112 else {
113     _testprogs('compile', '',   @ARGV) if -e "../testcompile";
114     _testprogs('perl',    '',   @ARGV);
115 }
116
117 sub _testprogs {
118     $type = shift @_;
119     $args = shift;
120     @tests = @_;
121
122     print <<'EOT' if ($type eq 'compile');
123 ------------------------------------------------------------------------------
124 TESTING COMPILER
125 ------------------------------------------------------------------------------
126 EOT
127
128     print <<'EOT' if ($type eq 'deparse');
129 ------------------------------------------------------------------------------
130 TESTING DEPARSER
131 ------------------------------------------------------------------------------
132 EOT
133
134     $ENV{PERLCC_TIMEOUT} = 120
135           if ($type eq 'compile' && !$ENV{PERLCC_TIMEOUT});
136
137     $bad = 0;
138     $good = 0;
139     $total = @tests;
140     $files  = 0;
141     $totmax = 0;
142
143     foreach (@tests) {
144         $name{$_} = File::Spec->catdir('t',$_) unless exists $name{$_};
145     }
146     my $maxlen = 0;
147     foreach (@name{@tests}) {
148         s/\.\w+\z/./;
149         my $len = length ;
150         $maxlen = $len if $len > $maxlen;
151     }
152     # + 3 : we want three dots between the test name and the "ok"
153     $dotdotdot = $maxlen + 3 ;
154     while ($test = shift @tests) {
155
156         if ( $infinite{$test} && $type eq 'compile' ) {
157             print STDERR "$test creates infinite loop! Skipping.\n";
158             next;
159         }
160         if ($test =~ /^$/) {
161             next;
162         }
163         if ($type eq 'deparse') {
164             if ($test eq "comp/redef.t") {
165                 # Redefinition happens at compile time
166                 next;
167             }
168             elsif ($test eq "lib/switch.t") {
169                 # B::Deparse doesn't support source filtering
170                 next;
171             }
172         }
173         $te = $name{$test};
174         print "$te" . '.' x ($dotdotdot - length($te));
175
176         $test = $OVER{$test} if exists $OVER{$test};
177
178         open(SCRIPT,"<$test") or die "Can't run $test.\n";
179         $_ = <SCRIPT>;
180         close(SCRIPT) unless ($type eq 'deparse');
181         if (/#!.*\bperl.*-\w*([tT])/) {
182             $switch = qq{"-$1"};
183         }
184         else {
185             $switch = '';
186         }
187
188         my $test_executable; # for 'compile' tests
189         my $file_opts = "";
190         if ($type eq 'deparse') {
191             # Look for #line directives which change the filename
192             while (<SCRIPT>) {
193                 $file_opts .= ",-f$3$4"
194                         if /^#\s*line\s+(\d+)\s+((\w+)|"([^"]+)")/;
195             }
196             close(SCRIPT);
197         }
198
199         my $utf = $with_utf ? '-I../lib -Mutf8' : '';
200         my $testswitch = '-I. -MTestInit'; # -T will strict . from @INC
201         if ($type eq 'deparse') {
202             my $deparse =
203                 "./perl $testswitch $switch -I../lib -MO=-qq,Deparse,".
204                 "-l$deparse_opts$file_opts ".
205                 "$test > $test.dp ".
206                 "&& ./perl $testswitch $switch -I../lib $test.dp |";
207             open(RESULTS, $deparse)
208                 or print "can't deparse '$deparse': $!.\n";
209         }
210         elsif ($type eq 'perl') {
211             my $perl = $ENV{PERL} || './perl';
212             my $run = "$perl $testswitch $switch $utf $test |";
213             open(RESULTS,$run) or print "can't run '$run': $!.\n";
214         }
215         else {
216             my $compile;
217             my $pl2c = "$testswitch -I../lib ../utils/perlcc --testsuite " .
218               # -O9 for good measure, -fcog is broken ATM
219                        "$switch -Wb=-O9,-fno-cog -L .. " .
220                        "-I \".. ../lib/CORE\" $args $utf $test -o ";
221
222             if( $^O eq 'MSWin32' ) {
223                 $test_executable = "$test.exe";
224                 # hopefully unused name...
225                 open HACK, "> xweghyz.pl";
226                 print HACK <<EOT;
227 #!./perl
228
229 open HACK, '.\\perl $pl2c $test_executable |';
230 # cl.exe prints the name of the .c file on stdout (\%^\$^#)
231 while(<HACK>) {m/^\w+\.[cC]\$/ && next;print}
232 open HACK, '$test_executable |';
233 while(<HACK>) {print}
234 EOT
235                 close HACK;
236                 $compile = 'xweghyz.pl |';
237             }
238             else {
239                 $test_executable = "$test.plc";
240                 $compile = "./perl $pl2c $test_executable && $test_executable |";
241             }
242             unlink $test_executable if -f $test_executable;
243             open(RESULTS, $compile)
244                 or print "can't compile '$compile': $!.\n";
245         }
246
247         $ok = 0;
248         $next = 0;
249         while (<RESULTS>) {
250             if ($verbose) {
251                 print $_;
252             }
253             unless (/^#/) {
254                 if (/^1\.\.([0-9]+)( todo ([\d ]+))?/) {
255                     $max = $1;
256                     %todo = map { $_ => 1 } split / /, $3 if $3;
257                     $totmax += $max;
258                     $files += 1;
259                     $next = 1;
260                     $ok = 1;
261                 }
262                 else {
263                     if (/^(not )?ok (\d+)[^#]*(\s*#.*)?/ &&
264                         $2 == $next)
265                     {
266                         my($not, $num, $extra) = ($1, $2, $3);
267                         my($istodo) = $extra =~ /^\s*#\s*TODO/ if $extra;
268                         $istodo = 1 if $todo{$num};
269
270                         if( $not && !$istodo ) {
271                             $ok = 0;
272                             $next = $num;
273                             last;
274                         }
275                         else {
276                             $next = $next + 1;
277                         }
278                     }
279                     elsif (/^Bail out!\s*(.*)/i) { # magic words
280                         die "FAILED--Further testing stopped" . ($1 ? ": $1\n" : ".\n");
281                     }
282                     else {
283                         $ok = 0;
284                     }
285                 }
286             }
287         }
288         close RESULTS;
289         if ($type eq 'deparse') {
290             unlink "./$test.dp";
291         }
292         if ($ENV{PERL_3LOG}) {
293             my $tpp = $test;
294             $tpp =~ s:^../::;
295             $tpp =~ s:/:_:g;
296             $tpp =~ s:\.t$::;
297             rename("perl.3log", "perl.3log.$tpp") ||
298                 die "rename: perl3.log to perl.3log.$tpp: $!\n";
299         }
300         $next = $next - 1;
301         # test if the compiler compiled something
302         if( $type eq 'compile' && !-e "$test_executable" ) {
303             $ok = 0;
304             print "Test did not compile\n";
305         }
306         if ($ok && $next == $max ) {
307             if ($max) {
308                 print "ok\n";
309                 $good = $good + 1;
310             }
311             else {
312                 print "skipping test on this platform\n";
313                 $files -= 1;
314             }
315         }
316         else {
317             $next += 1;
318             print "FAILED at test $next\n";
319             $bad = $bad + 1;
320             $_ = $test;
321             if (/^base/) {
322                 die "Failed a basic test--cannot continue.\n";
323             }
324         }
325     }
326
327     if ($bad == 0) {
328         if ($ok) {
329             print "All tests successful.\n";
330             # XXX add mention of 'perlbug -ok' ?
331         }
332         else {
333             die "FAILED--no tests were run for some reason.\n";
334         }
335     }
336     else {
337         $pct = $files ? sprintf("%.2f", ($files - $bad) / $files * 100) : "0.00";
338         if ($bad == 1) {
339             warn "Failed 1 test script out of $files, $pct% okay.\n";
340         }
341         else {
342             warn "Failed $bad test scripts out of $files, $pct% okay.\n";
343         }
344         warn <<'SHRDLU_1';
345 ### Since not all tests were successful, you may want to run some of
346 ### them individually and examine any diagnostic messages they produce.
347 ### See the INSTALL document's section on "make test".
348 SHRDLU_1
349         warn <<'SHRDLU_2' if $good / $total > 0.8;
350 ### You have a good chance to get more information by running
351 ###   ./perl harness
352 ### in the 't' directory since most (>=80%) of the tests succeeded.
353 SHRDLU_2
354         if (eval {require Config; import Config; 1}) {
355             if ($Config{usedl} && (my $p = $Config{ldlibpthname})) {
356                 warn <<SHRDLU_3;
357 ### You may have to set your dynamic library search path,
358 ### $p, to point to the build directory:
359 SHRDLU_3
360                 if (exists $ENV{$p} && $ENV{$p} ne '') {
361                     warn <<SHRDLU_4a;
362 ###   setenv $p `pwd`:\$$p; cd t; ./perl harness
363 ###   $p=`pwd`:\$$p; export $p; cd t; ./perl harness
364 ###   export $p=`pwd`:\$$p; cd t; ./perl harness
365 SHRDLU_4a
366                 } else {
367                     warn <<SHRDLU_4b;
368 ###   setenv $p `pwd`; cd t; ./perl harness
369 ###   $p=`pwd`; export $p; cd t; ./perl harness
370 ###   export $p=`pwd`; cd t; ./perl harness
371 SHRDLU_4b
372                 }    
373                 warn <<SHRDLU_5;
374 ### for csh-style shells, like tcsh; or for traditional/modern
375 ### Bourne-style shells, like bash, ksh, and zsh, respectively.
376 SHRDLU_5
377             }
378         }
379     }
380     ($user,$sys,$cuser,$csys) = times;
381     print sprintf("u=%g  s=%g  cu=%g  cs=%g  scripts=%d  tests=%d\n",
382         $user,$sys,$cuser,$csys,$files,$totmax);
383 }
384 exit ($bad != 0);