[win32] apply missing pieces from:
[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{EMXSHELL} = 'sh';        # For OS/2
21
22 if ($#ARGV == -1) {
23     @ARGV = split(/[ \n]/,
24       `echo base/*.t comp/*.t cmd/*.t io/*.t; echo op/*.t pragma/*.t lib/*.t`);
25 }
26
27 if ($^O eq 'os2' || $^O eq 'qnx') {
28     $sharpbang = 0;
29 }
30 else {
31     open(CONFIG, "../config.sh");
32     while (<CONFIG>) {
33         if (/sharpbang='(.*)'/) {
34             $sharpbang = ($1 eq '#!');
35             last;
36         }
37     }
38     close(CONFIG);
39 }
40
41 $bad = 0;
42 $good = 0;
43 $total = @ARGV;
44 $files  = 0;
45 $totmax = 0;
46 while ($test = shift) {
47     if ($test =~ /^$/) {
48         next;
49     }
50     $te = $test;
51     chop($te);
52     print "$te" . '.' x (18 - length($te));
53     if ($sharpbang) {
54         -x $test || (print "isn't executable.\n");
55         open(RESULTS,"./$test |") || (print "can't run.\n");
56     } else {
57         open(SCRIPT,"$test") || die "Can't run $test.\n";
58         $_ = <SCRIPT>;
59         close(SCRIPT);
60         if (/#!..perl(.*)/) {
61             $switch = $1;
62             if ($^O eq 'VMS') {
63                 # Must protect uppercase switches with "" on command line
64                 $switch =~ s/-([A-Z]\S*)/"-$1"/g;
65             }
66         } else {
67             $switch = '';
68         }
69         open(RESULTS,"./perl$switch $test |") || (print "can't run.\n");
70     }
71     $ok = 0;
72     $next = 0;
73     while (<RESULTS>) {
74         if ($verbose) {
75             print $_;
76         }
77         unless (/^#/) {
78             if (/^1\.\.([0-9]+)/) {
79                 $max = $1;
80                 $totmax += $max;
81                 $files += 1;
82                 $next = 1;
83                 $ok = 1;
84             } else {
85                 $next = $1, $ok = 0, last if /^not ok ([0-9]*)/;
86                 if (/^ok (\d+)(\s*#.*)?$/ && $1 == $next) {
87                     $next = $next + 1;
88                 } else {
89                     $ok = 0;
90                 }
91             }
92         }
93     }
94     $next = $next - 1;
95     if ($ok && $next == $max) {
96         if ($max) {
97             print "ok\n";
98             $good = $good + 1;
99         } else {
100             print "skipping test on this platform\n";
101             $files -= 1;
102         }
103     } else {
104         $next += 1;
105         print "FAILED at test $next\n";
106         $bad = $bad + 1;
107         $_ = $test;
108         if (/^base/) {
109             die "Failed a basic test--cannot continue.\n";
110         }
111     }
112 }
113
114 if ($bad == 0) {
115     if ($ok) {
116         print "All tests successful.\n";
117         # XXX add mention of 'perlbug -ok' ?
118     } else {
119         die "FAILED--no tests were run for some reason.\n";
120     }
121 } else {
122     $pct = sprintf("%.2f", $good / $total * 100);
123     if ($bad == 1) {
124         warn "Failed 1 test script out of $total, $pct% okay.\n";
125     } else {
126         warn "Failed $bad test scripts out of $total, $pct% okay.\n";
127     }
128        warn <<'SHRDLU';
129    ### Since not all tests were successful, you may want to run some
130    ### of them individually and examine any diagnostic messages they
131    ### produce.  See the INSTALL document's section on "make test".
132 SHRDLU
133        warn <<'SHRDLU' if $good / $total > 0.8;
134    ###
135    ### Since most tests were successful, you have a good chance to
136    ### get information with better granularity by running
137    ###     ./perl harness
138    ### in directory ./t.
139 SHRDLU
140 }
141 ($user,$sys,$cuser,$csys) = times;
142 print sprintf("u=%g  s=%g  cu=%g  cs=%g  scripts=%d  tests=%d\n",
143     $user,$sys,$cuser,$csys,$files,$totmax);
144 exit ($bad != 0);