Make sure temp file has an extension on VMS to work with the new
Craig A. Berry [Mon, 8 Sep 2008 02:30:50 +0000 (02:30 +0000)]
temp file name generator in t/test.pl

p4raw-id: //depot/perl@34315

t/comp/multiline.t

index 1af76fc..0409f8b 100755 (executable)
@@ -42,7 +42,8 @@ is($z, $y,  'basic multiline reading');
 is($count, 7,   '    line count');
 is($., 7,       '    $.' );
 
-$out = (($^O eq 'MSWin32') || $^O eq 'NetWare' || $^O eq 'VMS') ? `type $filename`
+$out = (($^O eq 'MSWin32') || $^O eq 'NetWare') ? `type $filename`
+    : ($^O eq 'VMS') ? `type $filename.;0`   # otherwise .LIS is assumed
     : ($^O eq 'MacOS') ? `catenate $filename`
     : `cat $filename`;