Change 19845 by [EMAIL PROTECTED] on 2003/06/23 04:55:39

        Test tweaks for VMS from Craig Berry.

Affected files ...

... //depot/perl/lib/strict.t#10 edit
... //depot/perl/lib/warnings.t#13 edit

Differences ...

==== //depot/perl/lib/strict.t#10 (text) ====
Index: perl/lib/strict.t
--- perl/lib/strict.t#9~19170~  Tue Apr  8 12:47:05 2003
+++ perl/lib/strict.t   Sun Jun 22 21:55:39 2003
@@ -36,7 +36,7 @@
 
 undef $/;
 
-print "1..", @prgs + 4, "\n";
+print "1.." . (@prgs + 4) . "\n";
  
  
 for (@prgs){
@@ -94,7 +94,7 @@
         print STDERR "GOT:\n$results\n";
         print "not ";
     }
-    print "ok ", ++$i, "\n";
+    print "ok " . ++$i . "\n";
     foreach (@temps) 
        { unlink $_ if $_ } 
 }

==== //depot/perl/lib/warnings.t#13 (text) ====
Index: perl/lib/warnings.t
--- perl/lib/warnings.t#12~17719~       Mon Aug 12 05:03:53 2002
+++ perl/lib/warnings.t Sun Jun 22 21:55:39 2003
@@ -59,7 +59,7 @@
 
 undef $/;
 
-print "1..", scalar(@prgs)-$files, "\n";
+print "1.." . (scalar(@prgs)-$files) . "\n";
 
 
 for (@prgs){
@@ -182,7 +182,7 @@
         print STDERR "GOT:\n$results\n";
         print "not ";
     }
-    print "ok ", ++$i, "\n";
+    print "ok " . ++$i . "\n";
     foreach (@temps)
        { unlink $_ if $_ }
     foreach (@temp_path)
End of Patch.

Reply via email to