summaryrefslogtreecommitdiff
path: root/t/pod
diff options
context:
space:
mode:
authorCraig A. Berry <craigberry@mac.com>2001-03-02 11:44:40 -0600
committerJarkko Hietaniemi <jhi@iki.fi>2001-03-03 17:13:13 +0000
commitce3e10c2bc172c8eabb46e97884de9f9608395cd (patch)
tree1b9da2483823429ddd37769a744d544ea7242a68 /t/pod
parent68a5ccec238ff20626c185a03684f758a1c86e1b (diff)
downloadperl-ce3e10c2bc172c8eabb46e97884de9f9608395cd.tar.gz
t/pod/find.t on VMS
Message-Id: <5.0.2.1.0.20010302172145.038d3c10@mail.mac.com> p4raw-id: //depot/perl@9001
Diffstat (limited to 't/pod')
-rw-r--r--t/pod/find.t21
1 files changed, 0 insertions, 21 deletions
diff --git a/t/pod/find.t b/t/pod/find.t
index 701490a183..846b3accb3 100644
--- a/t/pod/find.t
+++ b/t/pod/find.t
@@ -8,27 +8,6 @@ use Test;
BEGIN {
plan tests => 4;
use File::Spec;
- if ($^O eq 'VMS') {
- # This magick is needed to make the VMS I/O system to believe
- # that there's life after eight directory levels (this makes
- # it believe there's life until sixteen levels). The filesystem
- # has no limitation as such.
- $DEFAULT_DIR = $ENV{'DEFAULT'};
- my $here = $DEFAULT_DIR;
- my ($dev,$dir) = File::Spec->splitpath($here);
- $dev =~ s/:$//;
- $dev = $ENV{$dev} if exists($ENV{$dev});
- $dev .= ':' if $dev !~ /:/;
- $here = File::Spec->canonpath($dev.$dir);
- $here =~ s/\]$/.]/;
- system "define/nolog/job/trans=conceal temp_perl_base $here";
- chdir('temp_perl_base:[000000]');
- }
-}
-
-END {
- chdir($DEFAULT_DIR) if $^O eq 'VMS';
- system "deassign/job temp_perl_base";
}
use Pod::Find qw(pod_find pod_where);