diff options
author | Robin Barker <RMBarker@cpan.org> | 2003-05-23 18:37:09 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-05-23 16:55:09 +0000 |
commit | 54cfe9430e7706de0a1d08138e242eb6c92b15c8 (patch) | |
tree | 328067797a4044efb2ea110095fca82fca9bd599 /ext/PerlIO | |
parent | 287c8091529321306208d03ea400ad532aea56f5 (diff) | |
download | perl-54cfe9430e7706de0a1d08138e242eb6c92b15c8.tar.gz |
for Configure -Dnoextensions=Encode
Message-ID: <533D273D4014D411AB1D00062938C4D90404653D@hotel.npl.co.uk>
p4raw-id: //depot/perl@19600
Diffstat (limited to 'ext/PerlIO')
-rw-r--r-- | ext/PerlIO/t/encoding.t | 5 | ||||
-rw-r--r-- | ext/PerlIO/t/fallback.t | 6 |
2 files changed, 9 insertions, 2 deletions
diff --git a/ext/PerlIO/t/encoding.t b/ext/PerlIO/t/encoding.t index cf80af7160..06a0ba7e72 100644 --- a/ext/PerlIO/t/encoding.t +++ b/ext/PerlIO/t/encoding.t @@ -10,6 +10,10 @@ BEGIN { print "1..0 # Skip: not perlio\n"; exit 0; } + unless (eval { require Encode } ) { + print "1..0 # Skip: not Encode\n"; + exit 0; + } } print "1..14\n"; @@ -29,7 +33,6 @@ if (open(GRK, ">$grk")) { } { - use Encode; open(my $i,'<:encoding(iso-8859-7)',$grk); print "ok 1\n"; open(my $o,'>:utf8',$utf); diff --git a/ext/PerlIO/t/fallback.t b/ext/PerlIO/t/fallback.t index 049972e201..58420811a6 100644 --- a/ext/PerlIO/t/fallback.t +++ b/ext/PerlIO/t/fallback.t @@ -10,9 +10,13 @@ BEGIN { print "1..0 # Skip: EBCDIC\n"; exit 0; } + unless( eval { require Encode } ) { + print "1..0 # Skip: No Encode\n"; + exit 0; + } plan (9); + import Encode qw(:fallback_all); } -use Encode qw(:fallback_all); # $PerlIO::encoding = 0; # WARN_ON_ERR|PERLQQ; |