From: Nicholas Clark Date: Mon, 2 Oct 2000 11:03:24 +0000 (+0100) Subject: [ID 20001002.001] Not OK: perl v5.7.0 +DEVEL7093 +...001 on i586-linux 2.2.16 (UNINST... X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5a814814cd51e244388e778feeaca28d5d78d95b;p=p5sagit%2Fp5-mst-13.2.git [ID 20001002.001] Not OK: perl v5.7.0 +DEVEL7093 +...001 on i586-linux 2.2.16 (UNINSTALLED) Message-Id: <20001002110324.D20073@plum.flirble.org> Also fixes bug ID 20001002.005. p4raw-id: //depot/perl@7125 --- diff --git a/t/lib/encode.t b/t/lib/encode.t index 08e9bac..568efd3 100644 --- a/t/lib/encode.t +++ b/t/lib/encode.t @@ -1,6 +1,11 @@ BEGIN { chdir 't' if -d 't'; @INC = '../lib'; + require Config; import Config; + if ($Config{'extensions'} !~ /\Encode\b/) { + print "1..0 # Skip: Encode was not built\n"; + exit 0; + } } use Test; use Encode qw(from_to);