diff options
author | Nicholas Clark <nick@ccl4.org> | 2004-06-22 09:57:23 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2004-06-22 09:57:23 +0000 |
commit | 78cd8b71ec0d7665c422181192afa2819a5d887d (patch) | |
tree | 14c598444537bd29cf147b3c9b8296ba55b28a6e /lib/dumpvar.t | |
parent | b5cc9730721234f703470e46d73591d9849c4cd0 (diff) | |
download | perl-78cd8b71ec0d7665c422181192afa2819a5d887d.tar.gz |
Skip tests if List::Util not built
p4raw-id: //depot/perl@22967
Diffstat (limited to 'lib/dumpvar.t')
-rw-r--r-- | lib/dumpvar.t | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/dumpvar.t b/lib/dumpvar.t index f13bcee9ac..eb0fe315c7 100644 --- a/lib/dumpvar.t +++ b/lib/dumpvar.t @@ -3,6 +3,11 @@ BEGIN { chdir 't' if -d 't'; @INC = '../lib'; + require Config; + if (($Config::Config{'extensions'} !~ /\bList::Util\b/) ){ + print "1..0 # Skip -- Perl configured without List::Util module\n"; + exit 0; + } } use strict; |