summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-05-03 18:34:01 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-05-03 18:34:01 +0000
commitde35ba6fa6685dd401ba3904290b7c5d67884c23 (patch)
treec3cbb451dc5fc5fdb826e14740d4eb0698dee287 /t
parent1f24770523b86085797280e0a7daee28bb477133 (diff)
downloadperl-de35ba6fa6685dd401ba3904290b7c5d67884c23.tar.gz
fix broken parsing of /\x{ab}/
p4raw-id: //depot/perl@6057
Diffstat (limited to 't')
-rwxr-xr-xt/pragma/utf8.t5
1 files changed, 4 insertions, 1 deletions
diff --git a/t/pragma/utf8.t b/t/pragma/utf8.t
index 79596abd59..16a15862c5 100755
--- a/t/pragma/utf8.t
+++ b/t/pragma/utf8.t
@@ -10,7 +10,7 @@ BEGIN {
}
}
-print "1..60\n";
+print "1..61\n";
my $test = 1;
@@ -265,4 +265,7 @@ sub ok {
$test++; # 60
}
+
+ ok "\x{ab}" =~ /^\x{ab}$/, 1;
+ $test++; # 61
}