From: Max Maischein Date: Mon, 5 Oct 2009 17:03:19 +0000 (+0200) Subject: Remove :raw open mode from tests X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=38ec24b4509c45dcd56747fd58a17bbb8960a9a9;p=p5sagit%2Fp5-mst-13.2.git Remove :raw open mode from tests Message-ID: <4ACA2753.4080100@corion.net> --- diff --git a/t/porting/diag.t b/t/porting/diag.t index a9db20c..907c7f9 100644 --- a/t/porting/diag.t +++ b/t/porting/diag.t @@ -6,7 +6,7 @@ $|=1; my $make_exceptions_list = ($ARGV[0]||'') eq '--make-exceptions-list'; -open my $diagfh, "<:raw", "../pod/perldiag.pod" +open my $diagfh, "<", "../pod/perldiag.pod" or die "Can't open ../pod/perldiag.pod: $!"; my %entries; @@ -46,7 +46,7 @@ sub check_file { print "# $codefn\n"; - open my $codefh, "<:raw", $codefn + open my $codefh, "<", $codefn or die "Can't open $codefn: $!"; my $listed_as;