summaryrefslogtreecommitdiff
path: root/t/lib/warnings
diff options
context:
space:
mode:
authorAbigail <abigail@abigail.be>2017-01-14 21:44:56 +0100
committerAbigail <abigail@abigail.be>2017-01-16 19:18:16 +0100
commit1972ac5c2455a780ab04acb68be3dcde091c19ce (patch)
tree3c80da5109f64c6586848f11a308475bf16d09ff /t/lib/warnings
parent9840d1d66ee1648f6d7fb1554101450158cfee16 (diff)
downloadperl-1972ac5c2455a780ab04acb68be3dcde091c19ce.tar.gz
Reading/writing bytes from :utf8 handles will be fatal in 5.30
Diffstat (limited to 't/lib/warnings')
-rw-r--r--t/lib/warnings/pp_sys4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/lib/warnings/pp_sys b/t/lib/warnings/pp_sys
index cf0998d6f6..9c544e088b 100644
--- a/t/lib/warnings/pp_sys
+++ b/t/lib/warnings/pp_sys
@@ -958,7 +958,7 @@ sysread $fh, $buf, 10;
no warnings 'deprecated';
sysread $fh, $buf, 10;
EXPECT
-sysread() is deprecated on :utf8 handles at - line 5.
+sysread() is deprecated on :utf8 handles. This will be a fatal error in Perl 5.30 at - line 5.
########
# NAME syswrite() deprecated on :utf8
my $file = "syswwarn.tmp";
@@ -971,4 +971,4 @@ syswrite $fh, 'ABC';
close $fh;
unlink $file;
EXPECT
-syswrite() is deprecated on :utf8 handles at - line 5.
+syswrite() is deprecated on :utf8 handles. This will be a fatal error in Perl 5.30 at - line 5.