summaryrefslogtreecommitdiff
path: root/t/pragma/warn/doop
diff options
context:
space:
mode:
Diffstat (limited to 't/pragma/warn/doop')
-rw-r--r--t/pragma/warn/doop4
1 files changed, 1 insertions, 3 deletions
diff --git a/t/pragma/warn/doop b/t/pragma/warn/doop
index cce6bdc07c..c16e24f919 100644
--- a/t/pragma/warn/doop
+++ b/t/pragma/warn/doop
@@ -1,6 +1,6 @@
doop.c AOK
- Malformed UTF-8 character
+ \x%s will produce malformed UTF-8 character; use \x{%s} for that
__END__
@@ -9,7 +9,6 @@ use utf8 ;
$_ = "\x80 \xff" ;
chop ;
EXPECT
-Malformed UTF-8 character at - line 4.
########
# doop.c
BEGIN {
@@ -28,4 +27,3 @@ chop ;
EXPECT
\x80 will produce malformed UTF-8 character; use \x{80} for that at - line 10.
\xff will produce malformed UTF-8 character; use \x{ff} for that at - line 10.
-Malformed UTF-8 character at - line 11.