perl 5.003_01: t/lib/filehand.t
Perl 5 Porters [Thu, 18 Jul 1996 01:17:40 +0000 (01:17 +0000)]
Can't call FileHandle methods on unblessed file handle, since
  IO::Handle is now the default class

t/lib/filehand.t

index fc43350..0199a52 100755 (executable)
@@ -14,7 +14,7 @@ use FileHandle;
 use strict subs;
 
 $mystdout = new_from_fd FileHandle 1,"w";
-autoflush STDOUT;
+$| = 1;
 autoflush $mystdout;
 print "1..4\n";
 
@@ -24,12 +24,6 @@ $fh = new FileHandle "TEST", O_RDONLY and print "ok 2\n";
 $buffer = <$fh>;
 print $buffer eq "#!./perl\n" ? "ok 3\n" : "not ok 3\n";
 
-if ($^O eq 'VMS') {
-    ungetc $fh 65;
-    CORE::read($fh, $buf,1);
-}
-else {
-    ungetc STDIN 65;
-    CORE::read(STDIN, $buf,1);
-}
+ungetc $fh 65;
+CORE::read($fh, $buf,1);
 print $buf eq 'A' ? "ok 4\n" : "not ok 4\n";