From: Gurusamy Sarathy Date: Mon, 9 Jun 2003 15:59:52 +0000 (+0000) Subject: fix for perlio.t failures on windows (from Dan Kogai) X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=fae0605c8f29e9cd788866c0d0e8691a9f792365;p=p5sagit%2Fp5-mst-13.2.git fix for perlio.t failures on windows (from Dan Kogai) p4raw-id: //depot/perl@19720 --- diff --git a/ext/Encode/t/perlio.t b/ext/Encode/t/perlio.t index d3161cc..bc1ce1f 100644 --- a/ext/Encode/t/perlio.t +++ b/ext/Encode/t/perlio.t @@ -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 ();