diff options
Diffstat (limited to 't/lib/glob-case.t')
-rwxr-xr-x | t/lib/glob-case.t | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/t/lib/glob-case.t b/t/lib/glob-case.t index 2e65a0fc8b..32719b2d9a 100755 --- a/t/lib/glob-case.t +++ b/t/lib/glob-case.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..7\n"; } END { |