This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
lib/timelocal.t fails test 1 for VMS 7.1
[perl5.git] / vms / test.com
index 3e42a11..114cb24 100644 (file)
@@ -1,20 +1,35 @@
 $!  Test.Com - DCL driver for perl5 regression tests
 $!
-$!  Version 1.0  30-Sep-1994
+$!  Version 1.1   4-Dec-1995
 $!  Charles Bailey  bailey@genetics.upenn.edu
 $
 $!  A little basic setup
 $   On Error Then Goto wrapup
 $   olddef = F$Environment("Default")
-$   Set Default Perl_Root:[t]
+$   oldmsg = F$Environment("Message")
+$   If F$Search("t.dir").nes.""
+$   Then
+$       Set Default [.t]
+$   Else
+$       If F$TrnLNm("Perl_Root").nes.""
+$       Then 
+$           Set Default Perl_Root:[t]
+$       Else
+$           Write Sys$Error "Can't find test directory"
+$           Exit 44
+$       EndIf
+$   EndIf
+$   Set Message /Facility/Severity/Identification/Text
 $
+$  exe = ".Exe"
+$  If p1.nes."" Then exe = p1
 $!  Pick up a copy of perl to use for the tests
 $   Delete/Log/NoConfirm Perl.;*
-$   Copy/Log/NoConfirm [-]Perl.Exe []Perl.
+$   Copy/Log/NoConfirm [-]Perl'exe' []Perl.
 $
 $!  Make the environment look a little friendlier to tests which assume Unix
 $   cat = "Type"
-$   Macro/NoDebug/Object=Echo.Obj Sys$Input
+$   Macro/NoDebug/NoList/Object=Echo.Obj Sys$Input
                .title echo
                .psect data,wrt,noexe
        dsc:
@@ -54,12 +69,14 @@ $   Macro/NoDebug/Object=Echo.Obj Sys$Input
                movl    #1,r0
                ret     
                .end echo
-$   Link/NoTrace Echo.Obj;
+$   Link/NoMap/NoTrace/Exe=Echo.Exe Echo.Obj;
 $   Delete/Log/NoConfirm Echo.Obj;*
-$   echo = "$Perl_Root:[T]Echo.Exe"
+$   echo = "$" + F$Parse("Echo.Exe")
 $
 $!  And do it
-$   MCR Sys$Disk:[]Perl.
+$   testdir = "Directory/NoHead/NoTrail/Column=1"
+$   Define/User Perlshr Sys$Disk:[-]PerlShr'exe'
+$   MCR Sys$Disk:[]Perl. "-I[-.lib]" - "''p2'" "''p3'" "''p4'" "''p5'" "''p6'"
 $   Deck/Dollar=$$END-OF-TEST$$
 # $RCSfile: TEST,v $$Revision: 4.1 $$Date: 92/08/07 18:27:00 $
 # Modified for VMS 30-Sep-1994  Charles Bailey  bailey@genetics.upenn.edu
@@ -68,29 +85,43 @@ $   Deck/Dollar=$$END-OF-TEST$$
 # most of the constructs we'll be testing for.
 
 # skip those tests we know will fail entirely or cause perl to hang bacause
-# of Unixisms
-@compexcl=('cpp.t','script.t');
+# of Unixisms in the tests.  (The Perl operators being tested may work fine,
+# but the tests may use other operators which don't.)
+use Config;
+
+@compexcl=('cpp.t');
 @ioexcl=('argv.t','dup.t','fs.t','inplace.t','pipe.t');
 @libexcl=('anydbm.t','db-btree.t','db-hash.t','db-recno.t',
-          'gdbm.t','ndbm.t','odbm.t','sdbm.t','posix.t','soundex.t');
-@opexcl=('exec.t','fork.t','glob.t','magic.t','misc.t','stat.t');
+          'gdbm.t','io_dup.t', 'io_pipe.t', 'io_sel.t', 'io_sock.t',
+          'ndbm.t','odbm.t','open2.t','open3.t','posix.t',
+          'sdbm.t');
+
+# Note: POSIX is not part of basic build, but can be built
+# separately if you're using DECC
+# io_xs.t tests the new_tmpfile routine, which doesn't work with the
+# VAXCRTL, since the file can't be stat()d, an Perl's do_open()
+# insists on stat()ing a file descriptor before it'll use it.
+push(@libexcl,'io_xs.t') if $Config{'vms_cc_type'} ne 'decc';
+
+@opexcl=('exec.t','fork.t','glob.t','groups.t','magic.t','misc.t','stat.t');
 @exclist=(@compexcl,@ioexcl,@libexcl,@opexcl);
 foreach $file (@exclist) { $skip{$file}++; }
 
 $| = 1;
 
-#if ($ARGV[0] eq '-v') {
+@ARGV = grep($_,@ARGV);  # remove empty elements due to "''p1'" syntax
+
+if ($ARGV[0] eq '-v') {
     $verbose = 1;
-#    shift;
-#}
+    shift;
+}
 
 chdir 't' if -f 't/TEST';
 
 if ($ARGV[0] eq '') {
-    @files = split(/[ \n]/, `\$ dir/col=1/nohead/notrail [...]*.t;`);
-    foreach (@files) {
-      $fname = $_;
-      $fname =~ s/.*\]([\w\$\-]+\.T);.*/$1/;
+    foreach (<[.*]*.t>) {
+      s/.*[\[.]t./[./;
+      ($fname = $_) =~ s/.*\]//;
       if ($skip{"\L$fname"}) { push(@skipped,$_); }
       else { push(@ARGV,$_); }
     }
@@ -99,7 +130,7 @@ if ($ARGV[0] eq '') {
 if (@skipped) {
   print "The following tests were skipped because they rely extensively on\n";
   print " Unixisms not compatible with the current version of perl for VMS:\n";
-  print "\t",join("\n\t",@skipped);
+  print "\t",join("\n\t",@skipped),"\n\n";
 }
 
 $bad = 0;
@@ -111,12 +142,14 @@ while ($test = shift) {
     }
     $te = $test;
     chop($te);
-    print "$te" . '.' x (15 - length($te)) . "\n";
+    $te .= '.' x (24 - length($te));
        open(script,"$test") || die "Can't run $test.\n";
        $_ = <script>;
        close(script);
        if (/#!..perl(.*)/) {
            $switch = $1;
+           # Add "" to protect uppercase switches on command line
+           $switch =~ s/-(\S*[A-Z]\S*)/"-$1"/g;
        } else {
            $switch = '';
        }
@@ -125,7 +158,8 @@ while ($test = shift) {
     $next = 0;
     while (<results>) {
        if ($verbose) {
-           print $_;
+           print "$te$_";
+           $te = '';
        }
        unless (/^#/) {
            if (/^1\.\.([0-9]+)/) {
@@ -147,11 +181,16 @@ while ($test = shift) {
     }
     $next = $next - 1;
     if ($ok && $next == $max) {
-       print "ok\n";
-       $good = $good + 1;
+       if ($max) {
+           print "${te}ok\n";
+           $good = $good + 1;
+       } else {
+           print "${te}skipping test on this platform\n";
+           $files -= 1;
+       }
     } else {
        $next += 1;
-       print "FAILED on test $next\n";
+       print "${te}FAILED on test $next\n";
        $bad = $bad + 1;
        $_ = $test;
        if (/^base/) {
@@ -181,4 +220,5 @@ $$END-OF-TEST$$
 $ wrapup:
 $   If F$Search("Echo.Exe").nes."" Then Delete/Log/NoConfirm Echo.Exe;*
 $   Set Default &olddef
+$   Set Message 'oldmsg'
 $   Exit