diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2003-06-09 15:59:52 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2003-06-09 15:59:52 +0000 |
commit | fae0605c8f29e9cd788866c0d0e8691a9f792365 (patch) | |
tree | 37db7157b8545612c5bd6a2f644f2cb31609f8e5 /ext/Encode | |
parent | 972e9305c0a0aa1fd93bbafc5c7ef4fd5f2686ac (diff) | |
download | perl-fae0605c8f29e9cd788866c0d0e8691a9f792365.tar.gz |
fix for perlio.t failures on windows (from Dan Kogai)
p4raw-id: //depot/perl@19720
Diffstat (limited to 'ext/Encode')
-rw-r--r-- | ext/Encode/t/perlio.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Encode/t/perlio.t b/ext/Encode/t/perlio.t index d3161ccca0..bc1ce1f971 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 (); |