summaryrefslogtreecommitdiff
path: root/t/io
diff options
context:
space:
mode:
authorNick Ing-Simmons <nik@tiuk.ti.com>2001-06-15 20:27:42 +0000
committerNick Ing-Simmons <nik@tiuk.ti.com>2001-06-15 20:27:42 +0000
commit0c4f7ff0542ecfc72484b0714d25e263611253ee (patch)
tree9180e21993afa12505b59ebc906062164d1c7f82 /t/io
parenta2c454fab251f31050e7634776a305ebcdba5ec4 (diff)
downloadperl-0c4f7ff0542ecfc72484b0714d25e263611253ee.tar.gz
Fix open.pm to work via XS-implemented method calls rather
than *open::layers variables which caused all the HV/AV hassle. p4raw-id: //depot/perlio@10618
Diffstat (limited to 't/io')
-rwxr-xr-xt/io/utf8.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/io/utf8.t b/t/io/utf8.t
index fee0fe6ace..a541030015 100755
--- a/t/io/utf8.t
+++ b/t/io/utf8.t
@@ -3,7 +3,7 @@
BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
- unless (exists $open::layers{'perlio'}) {
+ unless (find PerlIO::Layer 'perlio') {
print "1..0 # Skip: not perlio\n";
exit 0;
}