diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-22 10:10:36 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-22 10:10:36 +0000 |
commit | d2a0188286383355aaa13e586da8618f82242215 (patch) | |
tree | f63be75ab721500612da0df6c14656695c81dcd1 /t/lib/glob-taint.t | |
parent | a104f515e1396d6efe6b0936f76a68f8852f5b49 (diff) | |
download | perl-d2a0188286383355aaa13e586da8618f82242215.tar.gz |
dos-djgpp updates (from Laszlo Molnar <laszlo.molnar@eth.ericsson.se>)
p4raw-id: //depot/perl@5196
Diffstat (limited to 't/lib/glob-taint.t')
-rwxr-xr-x | t/lib/glob-taint.t | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/t/lib/glob-taint.t b/t/lib/glob-taint.t index 1b9c053bf7..a8dc213853 100755 --- a/t/lib/glob-taint.t +++ b/t/lib/glob-taint.t @@ -3,6 +3,11 @@ BEGIN { chdir 't' if -d 't'; unshift @INC, '../lib'; + require Config; import Config; + if ($Config{'extensions'} !~ /\bFile\/Glob\b/i) { + print "1..0\n"; + exit 0; + } print "1..2\n"; } END { |