summaryrefslogtreecommitdiff
path: root/lib/Unicode
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-11-08 21:49:20 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-11-08 21:49:20 +0000
commit8b731da2c33117cac0e5992c0f888f85a1f64ba7 (patch)
tree2c539d6c545d12a0aa409c5eca042b11bce44ec3 /lib/Unicode
parentf8968d56a620fbc24e6d1c635873db141d73b77c (diff)
downloadperl-8b731da2c33117cac0e5992c0f888f85a1f64ba7.tar.gz
Unicode::UCD is not yet supported in EBCDIC platforms.
(Probably not an EBCDIC issue the way one would think since no chr() et alia are used in UCD.pm.) p4raw-id: //depot/perl@12904
Diffstat (limited to 'lib/Unicode')
-rw-r--r--lib/Unicode/UCD.pm8
-rw-r--r--lib/Unicode/UCD.t10
2 files changed, 15 insertions, 3 deletions
diff --git a/lib/Unicode/UCD.pm b/lib/Unicode/UCD.pm
index d50d3c9955..2cc0ece98e 100644
--- a/lib/Unicode/UCD.pm
+++ b/lib/Unicode/UCD.pm
@@ -50,8 +50,8 @@ Unicode::UCD - Unicode character database
=head1 DESCRIPTION
-The Unicode::UCD module offers a simple interface to the Unicode Character
-Database.
+The Unicode::UCD module offers a simple interface to the Unicode
+Character Database.
=cut
@@ -733,6 +733,10 @@ Character Database (the database is included in the Perl distribution).
The filehandle is then kept open for further queries. In other words,
if you are wondering where one of your filehandles went, that's where.
+=head1 BUGS
+
+Does not yet support EBCDIC platforms.
+
=head1 AUTHOR
Jarkko Hietaniemi
diff --git a/lib/Unicode/UCD.t b/lib/Unicode/UCD.t
index 7536e728e4..0434eb92d4 100644
--- a/lib/Unicode/UCD.t
+++ b/lib/Unicode/UCD.t
@@ -1,8 +1,16 @@
use Unicode::UCD;
-use Test;
use strict;
+BEGIN {
+ if (ord("A") == 193) {
+ print "1..0 # Skip: EBCDIC\n";
+ exit 0;
+ }
+}
+
+use Test;
+
BEGIN { plan tests => 162 };
use Unicode::UCD 'charinfo';