summaryrefslogtreecommitdiff
path: root/t/op/readdir.t
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-10-12 16:53:31 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-10-12 16:53:31 +0000
commit72b166521443a1b89b0fed156fa8334cfab6e61b (patch)
tree1b861dc3472acd4a3bf3b2f7a4ed71e073c143f9 /t/op/readdir.t
parent883d36a60f1dbc0dec153bce822eebaa5172be5d (diff)
downloadperl-72b166521443a1b89b0fed156fa8334cfab6e61b.tar.gz
add File::BSDGlob as File::Glob and load it at compile-time
if perl was built with -DPERL_INTERNAL_GLOB TODO: we currently get a compile-time failure if File/Glob.pm can't be found; such failure needs to be made to emit a warning and use the csh implementation instead p4raw-id: //depot/perl@4356
Diffstat (limited to 't/op/readdir.t')
-rwxr-xr-xt/op/readdir.t5
1 files changed, 5 insertions, 0 deletions
diff --git a/t/op/readdir.t b/t/op/readdir.t
index aea976823a..d101c2f622 100755
--- a/t/op/readdir.t
+++ b/t/op/readdir.t
@@ -1,5 +1,10 @@
#!./perl
+BEGIN {
+ chdir 't' if -d 't';
+ unshift @INC, '../lib';
+}
+
eval 'opendir(NOSUCH, "no/such/directory");';
if ($@) { print "1..0\n"; exit; }