diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-10-12 16:53:31 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-10-12 16:53:31 +0000 |
commit | 72b166521443a1b89b0fed156fa8334cfab6e61b (patch) | |
tree | 1b861dc3472acd4a3bf3b2f7a4ed71e073c143f9 /t/op/taint.t | |
parent | 883d36a60f1dbc0dec153bce822eebaa5172be5d (diff) | |
download | perl-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/taint.t')
-rwxr-xr-x | t/op/taint.t | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/t/op/taint.t b/t/op/taint.t index fdd1c79b83..6a9537b057 100755 --- a/t/op/taint.t +++ b/t/op/taint.t @@ -254,7 +254,8 @@ print "1..149\n"; # Globs should be forbidden, except under VMS, # which doesn't spawn an external program. -if ($Is_VMS) { +if (1 # built-in glob + or $Is_VMS) { for (35..36) { print "ok $_\n"; } } else { |