summaryrefslogtreecommitdiff
path: root/lib/charnames.t
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-05-28 13:32:46 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-05-28 13:32:46 +0000
commit00d835f2e04ba49347fca7d3b138f4c76991dcc3 (patch)
treed2da16e8040bef2b98575d9c8b7590dcc1a0489e /lib/charnames.t
parenteb6a2339ad9f670cbbb568923067c047241c85f0 (diff)
downloadperl-00d835f2e04ba49347fca7d3b138f4c76991dcc3.tar.gz
More charnames tweaks.
p4raw-id: //depot/perl@16835
Diffstat (limited to 'lib/charnames.t')
-rw-r--r--lib/charnames.t8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/charnames.t b/lib/charnames.t
index 669f6e813d..218cd9ad98 100644
--- a/lib/charnames.t
+++ b/lib/charnames.t
@@ -12,7 +12,7 @@ BEGIN {
$| = 1;
-print "1..42\n";
+print "1..44\n";
use charnames ':full';
@@ -226,7 +226,6 @@ print "ok 38\n";
print "ok 39\n";
}
-
print "not " unless ord("\N{ZWNJ}") == 0x200C;
print "ok 40\n";
@@ -236,3 +235,8 @@ print "ok 41\n";
print "not " unless "\N{U+263A}" eq "\N{WHITE SMILING FACE}";
print "ok 42\n";
+print "not " if defined charnames::viacode(0x110000);
+print "ok 43\n";
+
+print "not " if grep { /you asked for U+110000/ } @WARN;
+print "ok 44\n";