diff options
author | Andy Dougherty <doughera@lafayette.edu> | 2001-11-16 11:28:45 -0500 |
---|---|---|
committer | Abhijit Menon-Sen <ams@wiw.org> | 2001-11-16 20:30:03 +0000 |
commit | a778afa6a6f35f52eba5ee0f0eaae0aa3d425381 (patch) | |
tree | 7feb56604bf00c5eaae5a447315f2e22fd8f9040 /lib/Unicode | |
parent | 48023aa82fbffb88501ab33dabbc95499cf09f81 (diff) | |
download | perl-a778afa6a6f35f52eba5ee0f0eaae0aa3d425381.tar.gz |
lib/Unicode/UCD.t @INC oddity
Message-Id: <Pine.SOL.4.10.10111161625070.7245-100000@maxwell.phys.lafayette.edu>
p4raw-id: //depot/perl@13057
Diffstat (limited to 'lib/Unicode')
-rw-r--r-- | lib/Unicode/UCD.t | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Unicode/UCD.t b/lib/Unicode/UCD.t index e70e104874..1bed138710 100644 --- a/lib/Unicode/UCD.t +++ b/lib/Unicode/UCD.t @@ -1,14 +1,14 @@ -use Unicode::UCD; - -use strict; - BEGIN { if (ord("A") == 193) { print "1..0 # Skip: EBCDIC\n"; exit 0; } + chdir 't' if -d 't'; + @INC = '../lib'; } +use strict; +use Unicode::UCD; use Test; BEGIN { plan tests => 162 }; |