change 25925 had the side effect of breaking ext/Encode/t/perlio.t
Fixed by opening with :bytes.
p4raw-id: //depot/perl@26067
open $fh, ">:encoding($utf_nobom)", $sfile or die "$sfile : $!";
print $fh $str;
close $fh;
- open my $fh, "<", $sfile or die "$sfile : $!";
+ open my $fh, "<:bytes", $sfile or die "$sfile : $!";
read $fh, my $cmp, -s $sfile;
close $fh;
use bytes ();