[win32] merge changes#906,907,909,910 from maintbranch
[p5sagit/p5-mst-13.2.git] / t / TEST
1 #!./perl
2
3 # Last change: Fri Jan 10 09:57:03 WET 1997
4
5 # This is written in a peculiar style, since we're trying to avoid
6 # most of the constructs we'll be testing for.
7
8 $| = 1;
9
10 if ($#ARGV >= 0 && $ARGV[0] eq '-v') {
11     $verbose = 1;
12     shift;
13 }
14
15 chdir 't' if -f 't/TEST';
16
17 die "You need to run \"make test\" first to set things up.\n"
18   unless -e 'perl' or -e 'perl.exe';
19
20 #$ENV{PERL_DESTRUCT_LEVEL} = '2';
21 $ENV{EMXSHELL} = 'sh';        # For OS/2
22
23 if ($#ARGV == -1) {
24     @ARGV = split(/[ \n]/,
25       `echo base/*.t comp/*.t cmd/*.t io/*.t; echo op/*.t pragma/*.t lib/*.t`);
26 }
27
28 if ($^O eq 'os2' || $^O eq 'qnx') {
29     $sharpbang = 0;
30 }
31 else {
32     open(CONFIG, "../config.sh");
33     while (<CONFIG>) {
34         if (/sharpbang='(.*)'/) {
35             $sharpbang = ($1 eq '#!');
36             last;
37         }
38     }
39     close(CONFIG);
40 }
41
42 %infinite = ( 'comp/require.t', 1, 'op/bop.t', 1, 'lib/hostname.t', 1 ); 
43
44 _testprogs('perl', @ARGV);
45 _testprogs('compile', @ARGV) if (-e "../testcompile"); 
46
47 sub _testprogs
48 {
49         $type = shift @_;
50         @tests = @_;
51
52
53         print "
54 --------------------------------------------------------------------------------
55 TESTING COMPILER
56 --------------------------------------------------------------------------------
57 " if ($type eq 'compile');
58
59         $bad = 0;
60         $good = 0;
61         $total = @tests;
62         $files  = 0;
63         $totmax = 0;
64 while ($test = shift @tests) {
65
66     if ( $infinite{$test} && $type eq 'compile' ) {
67                 print STDERR "$test creates infinite loop! Skipping.\n"; 
68         next;
69         }
70     if ($test =~ /^$/) {
71         next;
72     }
73     $te = $test;
74     chop($te);
75     print "$te" . '.' x (18 - length($te));
76     if ($sharpbang) {
77         -x $test || (print "isn't executable.\n");
78
79         if ($type eq 'perl')
80                 { open(RESULTS, "./$test |") || (print "can't run.\n"); }
81         else
82         { 
83                 open(RESULTS, "./perl -I../lib ../utils/perlcc ./$test -run -verbose dcf -log ../compilelog |") 
84                                                                                         || (print "can't compile.\n");
85         }
86     } else {
87         open(SCRIPT,"$test") || die "Can't run $test.\n";
88         $_ = <SCRIPT>;
89         close(SCRIPT);
90         if (/#!..perl(.*)/) {
91             $switch = $1;
92             if ($^O eq 'VMS') {
93                 # Must protect uppercase switches with "" on command line
94                 $switch =~ s/-([A-Z]\S*)/"-$1"/g;
95             }
96         } else {
97             $switch = '';
98         }
99
100         if ($type eq 'perl')
101         {
102                 open(RESULTS,"./perl$switch $test |") || (print "can't run.\n");
103         }
104         else
105         {
106                 open(RESULTS, "./perl -I../lib ../utils/perlcc ./$test -run -verbose dcf -log ../compilelog |") 
107                                                                                         || (print "can't compile.\n");
108         }
109     }
110     $ok = 0;
111     $next = 0;
112     while (<RESULTS>) {
113         if ($verbose) {
114             print $_;
115         }
116         unless (/^#/) {
117             if (/^1\.\.([0-9]+)/) {
118                 $max = $1;
119                 $totmax += $max;
120                 $files += 1;
121                 $next = 1;
122                 $ok = 1;
123             } else {
124                 $next = $1, $ok = 0, last if /^not ok ([0-9]*)/;
125                 if (/^ok (\d+)(\s*#.*)?$/ && $1 == $next) {
126                     $next = $next + 1;
127                 } else {
128                     $ok = 0;
129                 }
130             }
131         }
132     }
133     $next = $next - 1;
134     if ($ok && $next == $max) {
135         if ($max) {
136             print "ok\n";
137             $good = $good + 1;
138         } else {
139             print "skipping test on this platform\n";
140             $files -= 1;
141         }
142     } else {
143         $next += 1;
144         print "FAILED at test $next\n";
145         $bad = $bad + 1;
146         $_ = $test;
147         if (/^base/) {
148             die "Failed a basic test--cannot continue.\n";
149         }
150     }
151 }
152
153 if ($bad == 0) {
154     if ($ok) {
155         print "All tests successful.\n";
156         # XXX add mention of 'perlbug -ok' ?
157     } else {
158         die "FAILED--no tests were run for some reason.\n";
159     }
160 } else {
161     $pct = sprintf("%.2f", $good / $total * 100);
162     if ($bad == 1) {
163         warn "Failed 1 test script out of $total, $pct% okay.\n";
164     } else {
165         warn "Failed $bad test scripts out of $total, $pct% okay.\n";
166     }
167        warn <<'SHRDLU';
168    ### Since not all tests were successful, you may want to run some
169    ### of them individually and examine any diagnostic messages they
170    ### produce.  See the INSTALL document's section on "make test".
171    ### If you are testing the compiler, then ignore this message 
172    ### and run 
173    ###      ./perl harness
174    ### in the directory ./t.
175 SHRDLU
176        warn <<'SHRDLU' if $good / $total > 0.8;
177    ###
178    ### Since most tests were successful, you have a good chance to
179    ### get information with better granularity by running
180    ###     ./perl harness 
181    ### in directory ./t.
182 SHRDLU
183 }
184 ($user,$sys,$cuser,$csys) = times;
185 print sprintf("u=%g  s=%g  cu=%g  cs=%g  scripts=%d  tests=%d\n",
186     $user,$sys,$cuser,$csys,$files,$totmax);
187 }
188 exit ($bad != 0);