summaryrefslogtreecommitdiff
path: root/ext/Encode
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2003-06-09 15:59:52 +0000
committerGurusamy Sarathy <gsar@cpan.org>2003-06-09 15:59:52 +0000
commitfae0605c8f29e9cd788866c0d0e8691a9f792365 (patch)
tree37db7157b8545612c5bd6a2f644f2cb31609f8e5 /ext/Encode
parent972e9305c0a0aa1fd93bbafc5c7ef4fd5f2686ac (diff)
downloadperl-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.t2
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 ();