fix for perlio.t failures on windows (from Dan Kogai)
Gurusamy Sarathy [Mon, 9 Jun 2003 15:59:52 +0000 (15:59 +0000)]
p4raw-id: //depot/perl@19720

ext/Encode/t/perlio.t

index d3161cc..bc1ce1f 100644 (file)
@@ -164,7 +164,7 @@ SKIP:{
        open  $fh, ">:encoding($utf_nobom)", $sfile or die "$sfile : $!";
        print $fh $str;
        close $fh;
-       open my $fh, "<:raw", $sfile or die "$sfile : $!";
+       open my $fh, "<", $sfile or die "$sfile : $!";
        read $fh, my $cmp, -s $sfile;
        close $fh;
        use bytes ();