summaryrefslogtreecommitdiff
path: root/t/comp
diff options
context:
space:
mode:
authorMarcus Holland-Moritz <mhx-perl@gmx.net>2004-06-11 09:37:42 +0000
committerMarcus Holland-Moritz <mhx-perl@gmx.net>2004-06-11 09:37:42 +0000
commitd70c85514a95a48123aff095670ef279404c7dd0 (patch)
treed4eac437c57aa56f25fb215ccfa2833a75d0a4b3 /t/comp
parentab4ada9fafa88ff0344b32d382f1ee4e665e3cc3 (diff)
downloadperl-d70c85514a95a48123aff095670ef279404c7dd0.tar.gz
t/comp/utf.t failed when configuring with -Dnoextensions=Encode
p4raw-id: //depot/perl@22928
Diffstat (limited to 't/comp')
-rw-r--r--t/comp/utf.t5
1 files changed, 5 insertions, 0 deletions
diff --git a/t/comp/utf.t b/t/comp/utf.t
index ff2b4997b9..90a9e5e11b 100644
--- a/t/comp/utf.t
+++ b/t/comp/utf.t
@@ -11,6 +11,11 @@ BEGIN {
print "1..0 # Skip: no dynamic loading on miniperl, no threads\n";
exit 0;
}
+ require Config; import Config;
+ if ($Config{'extensions'} !~ /\bEncode\b/) {
+ print "1..0 # Skip: Encode was not built\n";
+ exit 0;
+ }
}
require "./test.pl";