More CJK (just C, really) tables from Autrijus Tang
[p5sagit/p5-mst-13.2.git] / vms / test.com
1 $!  Test.Com - DCL driver for perl5 regression tests
2 $!
3 $!  Version 1.1   4-Dec-1995
4 $!  Charles Bailey  bailey@newman.upenn.edu
5 $!
6 $!  A little basic setup
7 $   On Error Then Goto wrapup
8 $   olddef = F$Environment("Default")
9 $   oldmsg = F$Environment("Message")
10 $   If F$Search("t.dir").nes.""
11 $   Then
12 $       Set Default [.t]
13 $   Else
14 $       If F$TrnLNm("Perl_Root").nes.""
15 $       Then 
16 $           Set Default Perl_Root:[t]
17 $       Else
18 $           Write Sys$Error "Can't find test directory"
19 $           Exit 44
20 $       EndIf
21 $   EndIf
22 $   Set Message /NoFacility/NoSeverity/NoIdentification/NoText
23 $!
24 $   exe = ".Exe"
25 $   If p1.nes."" Then exe = p1
26 $   If F$Extract(0,1,exe) .nes. "."
27 $   Then
28 $     Write Sys$Error ""
29 $     Write Sys$Error "The first parameter passed to Test.Com must be the file type used for the"
30 $     Write Sys$Error "images produced when you built Perl (i.e. "".Exe"", unless you edited"
31 $     Write Sys$Error "Descrip.MMS or used the AXE=1 macro in the MM[SK] command line."
32 $     Write Sys$Error ""
33 $     Exit 44
34 $   EndIf
35 $!
36 $!  "debug" perl if second parameter is nonblank
37 $!
38 $   dbg = ""
39 $   ndbg = ""
40 $   if p2.nes."" then dbg  = "dbg"
41 $   if p2.nes."" then ndbg = "ndbg"
42 $!
43 $!  Pick up a copy of perl to use for the tests
44 $   If F$Search("Perl.").nes."" Then Delete/Log/NoConfirm Perl.;*
45 $   Copy/Log/NoConfirm [-]'ndbg'Perl'exe' []Perl.
46 $!
47 $!  Pick up a copy of vmspipe.com to use for the tests
48 $   If F$Search("VMSPIPE.COM").nes."" then Delete/Log/Noconfirm VMSPIPE.COM;*
49 $   Copy/Log/NoConfirm [-]VMSPIPE.COM []
50 $!
51 $!  And do it
52 $   Show Process/Accounting
53 $   testdir = "Directory/NoHead/NoTrail/Column=1"
54 $   PerlShr_filespec = f$parse("Sys$Disk:[-]''dbg'PerlShr''exe'")
55 $   Define 'dbg'Perlshr 'PerlShr_filespec'
56 $   if f$mode() .nes. "INTERACTIVE" then Define PERL_SKIP_TTY_TEST 1
57 $   MCR Sys$Disk:[]Perl. "-I[-.lib]" - "''p3'" "''p4'" "''p5'" "''p6'"
58 $   Deck/Dollar=$$END-OF-TEST$$
59 #
60 # The bulk of the below code is scheduled for deletion.  test.com
61 # will shortly use t/TEST.
62 #
63
64 use Config;
65 use File::Spec;
66
67 $| = 1;
68
69 # Let tests know they're running in the perl core.  Useful for modules
70 # which live dual lives on CPAN.
71 $ENV{PERL_CORE} = 1;
72
73 @ARGV = grep($_,@ARGV);  # remove empty elements due to "''p1'" syntax
74
75 if (lc($ARGV[0]) eq '-v') {
76     $verbose = 1;
77     shift;
78 }
79
80 chdir 't' if -f 't/TEST';
81
82 if ($ARGV[0] eq '') {
83     foreach (<[.*]*.t>, <[-.ext...]*.t>, <[-.lib...]*.t>) {
84       $_ = File::Spec->abs2rel($_);
85       s/\[([a-z]+)/[.$1/;      # hmm, abs2rel doesn't do subdirs of the cwd
86       ($fname = $_) =~ s/.*\]//;
87       push(@ARGV,$_);
88     }
89 }
90
91 $bad = 0;
92 $good = 0;
93 $extra_skip = 0;
94 $total = @ARGV;
95 while ($test = shift) {
96     if ($test =~ /^$/) {
97         next;
98     }
99     $te = $test;
100     chop($te);
101     $te .= '.' x (40 - length($te));
102         open(script,"$test") || die "Can't run $test.\n";
103         $_ = <script>;
104         close(script);
105         if (/#!.*\bperl.*-\w*([tT])/) {
106             $switch = qq{"-$1"};
107         } else {
108             $switch = '';
109         }
110         open(results,"\$ MCR Sys\$Disk:[]Perl. \"-I[-.lib]\" $switch $test 2>&1|") || (print "can't run.\n");
111     $ok = 0;
112     $next = 0;
113     $pending_not = 0;
114     while (<results>) {
115         if ($verbose) {
116             print "$te$_";
117             $te = '';
118         }
119         unless (/^#/) {
120             if (/^1\.\.([0-9]+)( todo ([\d ]+))?/) {
121                 $max = $1;
122                 %todo = map { $_ => 1 } split / /, $3 if $3;
123                 $totmax += $max;
124                 $files += 1;
125                 $next = 1;
126                 $ok = 1;
127             } else {
128                 # our 'echo' substitute produces one more \n than Unix'
129                 next if /^\s*$/;
130
131
132                 if (/^(not )?ok (\d+)[^#]*(\s*#.*)?/ &&
133                     $2 == $next)
134                 {
135                     my($not, $num, $extra) = ($1, $2, $3);
136                     my($istodo) = $extra =~ /^\s*#\s*TODO/ if $extra;
137                     $istodo = 1 if $todo{$num};
138
139                     if( $not && !$istodo ) {
140                         $ok = 0;
141                         $next = $num;
142                         last;
143                     }
144                     elsif( $pending_not ) {
145                         $next = $num;
146                         $ok = 0;
147                     }
148                     else {
149                         $next = $next + 1;
150                     }
151                 }
152                 elsif(/^not $/) {
153                     # VMS has this problem.  It sometimes adds newlines
154                     # between prints.  This sometimes means you get
155                     # "not \nok 42"
156                     $pending_not = 1;
157                 }
158                 elsif (/^Bail out!\s*(.*)/i) { # magic words
159                     die "FAILED--Further testing stopped" . ($1 ? ": $1\n" : ".\n");
160                 }
161                 else {
162                     $ok = 0;
163                 }
164
165             }
166         }
167     }
168     $next = $next - 1;
169     if ($ok && $next == $max) {
170         if ($max) {
171             print "${te}ok\n";
172             $good = $good + 1;
173         } else {
174             print "${te}skipping test on this platform\n";
175             $files -= 1;
176             $extra_skip = $extra_skip + 1;
177         }
178     } else {
179         $next += 1;
180         print "${te}FAILED on test $next\n";
181         $bad = $bad + 1;
182         $_ = $test;
183         if (/^base/) {
184             die "Failed a basic test--cannot continue.\n";
185         }
186     }
187 }
188
189 if ($bad == 0) {
190     if ($ok) {
191         print "All tests successful.\n";
192     } else {
193         die "FAILED--no tests were run for some reason.\n";
194     }
195 } else {
196     # $pct = sprintf("%.2f", $good / $total * 100);
197     $gtotal = $total - $extra_skip;
198     if ($gtotal <= 0) { $gtotal = $total; }
199     $pct = sprintf("%.2f", $good / $gtotal * 100);
200     if ($bad == 1) {
201         warn "Failed 1 test, $pct% okay.\n";
202    } else {
203          if ($extra_skip > 0) {
204              warn "Total tests: $total, Passed $good, Skipped $extra_skip.\n";
205              warn "Failed $bad/$gtotal tests, $pct% okay.\n";
206          }
207          else {
208              warn "Total tests: $total, Passed $good.\n";
209              warn "Failed $bad/$gtotal tests, $pct% okay.\n";
210          }
211     }
212 }
213 ($user,$sys,$cuser,$csys) = times;
214 print sprintf("u=%g  s=%g  cu=%g  cs=%g  scripts=%d  tests=%d\n",
215     $user,$sys,$cuser,$csys,$files,$totmax);
216 $$END-OF-TEST$$
217 $ wrapup:
218 $   deassign 'dbg'Perlshr
219 $   Show Process/Accounting
220 $   Set Default &olddef
221 $   Set Message 'oldmsg'
222 $   Exit