diff options
author | Craig A. Berry <craigberry@mac.com> | 2007-07-04 16:27:16 +0000 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2007-07-04 16:27:16 +0000 |
commit | 181b7e95925b791c6e8c36e215c62307ecffe5e7 (patch) | |
tree | ea4a209a72957ff72a12cd27a558a64b094f7942 /lib | |
parent | 21fa6956243df9cb622bebfa0934ea7923519b4f (diff) | |
download | perl-181b7e95925b791c6e8c36e215c62307ecffe5e7.tar.gz |
New File::Path tests require unix syntax on VMS.
p4raw-id: //depot/perl@31535
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/File/Path.t | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/File/Path.t b/lib/File/Path.t index 36ac5a9014..8e4ce411a0 100755 --- a/lib/File/Path.t +++ b/lib/File/Path.t @@ -136,6 +136,8 @@ ok(-d $dir, "dir a still exists"); ok(-d $dir2, "dir z still exists"); $dir = catdir($tmp_base,'F'); +# mkpath returns unix syntax filespecs on VMS +$dir = VMS::Filespec::unixify($dir) if $^O eq 'VMS'; @created = mkpath($dir, undef, 0770); is(scalar(@created), 1, "created directory (old style 2 verbose undef)"); |