This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Still spurious output; indent the code a bit.
[perl5.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 # Cheesy version of Getopt::Std.  Maybe we should replace it with that.
9 if ($#ARGV >= 0) {
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(,.+)?$/) {
15             $deparse = 1;
16             $deparse_opts = $1;
17         }
18         splice(@ARGV, $idx, 1);
19     }
20 }
21
22 chdir 't' if -f 't/TEST';
23
24 die "You need to run \"make test\" first to set things up.\n"
25   unless -e 'perl' or -e 'perl.exe';
26
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";
31         }
32         else {
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';
38         }
39     }
40 }
41
42 # check leakage for embedders
43 $ENV{PERL_DESTRUCT_LEVEL} = 2 unless exists $ENV{PERL_DESTRUCT_LEVEL};
44
45 $ENV{EMXSHELL} = 'sh';        # For OS/2
46
47 # Roll your own File::Find!
48 use TestInit;
49 use File::Spec;
50 my $curdir = File::Spec->curdir;
51 my $updir  = File::Spec->updir;
52
53 sub _find_tests {
54     my($dir) = @_;
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;
58
59         my $fullpath = File::Spec->catdir($dir, $f);
60
61         _find_tests($fullpath) if -d $fullpath;
62         push @ARGV, $fullpath if $f =~ /\.t$/;
63     }
64 }
65
66 unless (@ARGV) {
67     foreach my $dir (qw(base comp cmd run io op pragma lib pod)) {
68         _find_tests($dir);
69     }
70     my $mani = File::Spec->catdir($updir, "MANIFEST");
71     if (open(MANI, $mani)) {
72         while (<MANI>) {
73             if (m!^((?:ext|lib)/.+/(?:t/.+\.t)|test.pl)\s!) {
74                 push @ARGV, $1;
75                 $OVER{$1} = File::Spec->catdir($updir, $1);
76             }
77         }
78     } else {
79         warn "$0: cannot open $mani: $!\n";
80     }
81 }
82
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 );
85 %infinite = ();
86
87 if ($deparse) {
88     _testprogs('deparse', @ARGV);
89 } else {
90     _testprogs('perl', @ARGV);
91     _testprogs('compile', @ARGV) if (-e "../testcompile");
92 }
93
94 sub _testprogs {
95     $type = shift @_;
96     @tests = @_;
97
98     print <<'EOT' if ($type eq 'compile');
99 ------------------------------------------------------------------------------
100 TESTING COMPILER
101 ------------------------------------------------------------------------------
102 EOT
103
104     print <<'EOT' if ($type eq 'deparse');
105 ------------------------------------------------------------------------------
106 TESTING DEPARSER
107 ------------------------------------------------------------------------------
108 EOT
109
110     $ENV{PERLCC_TIMEOUT} = 120
111           if ($type eq 'compile' && !$ENV{PERLCC_TIMEOUT});
112
113     $bad = 0;
114     $good = 0;
115     $total = @tests;
116     $files  = 0;
117     $totmax = 0;
118     my $maxlen = 0;
119     my $maxsuflen = 0;
120     foreach (@tests) { # The same code in lib/Test/Harness.pm:_run_all_tests
121         my $suf    = /\.(\w+)$/ ? $1 : '';
122         my $len    = length;
123         my $suflen = length $suf;
124         $maxlen    = $len    if $len    > $maxlen;
125         $maxsuflen = $suflen if $suflen > $maxsuflen;
126     }
127     # + 3 : we want three dots between the test name and the "ok"
128     $dotdotdot = $maxlen + 3 - $maxsuflen;
129     while ($test = shift @tests) {
130
131         if ( $infinite{$test} && $type eq 'compile' ) {
132             print STDERR "$test creates infinite loop! Skipping.\n";
133             next;
134         }
135         if ($test =~ /^$/) {
136             next;
137         }
138         if ($type eq 'deparse') {
139             if ($test eq "comp/redef.t") {
140                 # Redefinition happens at compile time
141                 next;
142             }
143             elsif ($test eq "lib/switch.t") {
144                 # B::Deparse doesn't support source filtering
145                 next;
146             }
147         }
148         $te = $test;
149         chop($te);
150         print "$te" . '.' x ($dotdotdot - length($te));
151
152         $test = $OVER{$test} if exists $OVER{$test};
153
154         open(SCRIPT,"<$test") or die "Can't run $test.\n";
155         $_ = <SCRIPT>;
156         close(SCRIPT) unless ($type eq 'deparse');
157         if (/#!.*perl(.*)$/) {
158             $switch = $1;
159             if ($^O eq 'VMS') {
160                 # Must protect uppercase switches with "" on command line
161                 $switch =~ s/-([A-Z]\S*)/"-$1"/g;
162             }
163         }
164         else {
165             $switch = '';
166         }
167
168         my $file_opts = "";
169         if ($type eq 'deparse') {
170             # Look for #line directives which change the filename
171             while (<SCRIPT>) {
172                 $file_opts .= ",-f$3$4"
173                         if /^#\s*line\s+(\d+)\s+((\w+)|"([^"]+)")/;
174             }
175             close(SCRIPT);
176         }
177
178         $test = $OVER{$test} if exists $OVER{$test};
179
180         my $utf = $with_utf ? '-I../lib -Mutf8' : '';
181         my $testswitch = '-I. -MTestInit'; # -T will strict . from @INC
182         if ($type eq 'deparse') {
183             my $deparse =
184                 "./perl $testswitch $switch -I../lib -MO=-qq,Deparse,".
185                 "-l$deparse_opts$file_opts ".
186                 "$test > $test.dp ".
187                 "&& ./perl $testswitch $switch -I../lib $test.dp |";
188             open(RESULTS, $deparse)
189                 or print "can't deparse '$deparse': $!.\n";
190         }
191         elsif ($type eq 'perl') {
192             my $run = "./perl $testswitch $switch $utf $test |";
193             open(RESULTS,$run) or print "can't run '$run': $!.\n";
194         }
195         else {
196             my $compile =
197                 "./perl $testswitch -I../lib ../utils/perlcc -o ".
198                 "$test.plc $utf $test ".
199                 " && $test.plc |";
200             open(RESULTS, $compile)
201                 or print "can't compile '$compile': $!.\n";
202             unlink "$test.plc";
203         }
204
205         $ok = 0;
206         $next = 0;
207         while (<RESULTS>) {
208             if ($verbose) {
209                 print $_;
210             }
211             unless (/^#/) {
212                 if (/^1\.\.([0-9]+)( todo ([\d ]+))?/) {
213                     $max = $1;
214                     %todo = map { $_ => 1 } split / /, $3 if $3;
215                     $totmax += $max;
216                     $files += 1;
217                     $next = 1;
218                     $ok = 1;
219                 }
220                 else {
221                     if (/^(not )?ok (\d+)(\s*#.*)?/ &&
222                         $2 == $next)
223                     {
224                         my($not, $num, $extra) = ($1, $2, $3);
225                         my($istodo) = $extra =~ /^\s*#\s*TODO/ if $extra;
226                         $istodo = 1 if $todo{$num};
227
228                         if( $not && !$istodo ) {
229                             $ok = 0;
230                             $next = $num;
231                             last;
232                         }
233                         else {
234                             $next = $next + 1;
235                         }
236                     }
237                     elsif (/^Bail out!\s*(.*)/i) { # magic words
238                         die "FAILED--Further testing stopped" . ($1 ? ": $1\n" : ".\n");
239                     }
240                     else {
241                         $ok = 0;
242                     }
243                 }
244             }
245         }
246         close RESULTS;
247         if ($type eq 'deparse') {
248             unlink "./$test.dp";
249         }
250         if ($ENV{PERL_3LOG}) {
251             my $tpp = $test;
252             $tpp =~ s:/:_:g;
253             $tpp =~ s:\.t$::;
254             rename("perl.3log", "perl.3log.$tpp");
255         }
256         $next = $next - 1;
257         if ($ok && $next == $max) {
258             if ($max) {
259                 print "ok\n";
260                 $good = $good + 1;
261             }
262             else {
263                 print "skipping test on this platform\n";
264                 $files -= 1;
265             }
266         }
267         else {
268             $next += 1;
269             print "FAILED at test $next\n";
270             $bad = $bad + 1;
271             $_ = $test;
272             if (/^base/) {
273                 die "Failed a basic test--cannot continue.\n";
274             }
275         }
276     }
277
278     if ($bad == 0) {
279         if ($ok) {
280             print "All tests successful.\n";
281             # XXX add mention of 'perlbug -ok' ?
282         }
283         else {
284             die "FAILED--no tests were run for some reason.\n";
285         }
286     }
287     else {
288         $pct = $files ? sprintf("%.2f", ($files - $bad) / $files * 100) : "0.00";
289         if ($bad == 1) {
290             warn "Failed 1 test script out of $files, $pct% okay.\n";
291         }
292         else {
293             warn "Failed $bad test scripts out of $files, $pct% okay.\n";
294         }
295         warn <<'SHRDLU';
296    ### Since not all tests were successful, you may want to run some
297    ### of them individually and examine any diagnostic messages they
298    ### produce.  See the INSTALL document's section on "make test".
299    ### If you are testing the compiler, then ignore this message
300    ### and run
301    ###      ./perl harness
302    ### in the directory ./t.
303 SHRDLU
304         warn <<'SHRDLU' if $good / $total > 0.8;
305    ###
306    ### Since most tests were successful, you have a good chance to
307    ### get information with better granularity by running
308    ###     ./perl harness
309    ### in directory ./t.
310 SHRDLU
311     }
312     ($user,$sys,$cuser,$csys) = times;
313     print sprintf("u=%g  s=%g  cu=%g  cs=%g  scripts=%d  tests=%d\n",
314         $user,$sys,$cuser,$csys,$files,$totmax);
315 }
316 exit ($bad != 0);