This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Spaces in filenames require non-default settings on VMS.
authorCraig A. Berry <craigberry@mac.com>
Sun, 28 Mar 2010 19:58:54 +0000 (14:58 -0500)
committerDavid Mitchell <davem@iabyn.com>
Sun, 28 Mar 2010 20:20:58 +0000 (21:20 +0100)
Specifically DECC$EFS_CHARSET must be enabled and not everything
plays nice with that, so for now this is a to-do.

lib/File/Copy.t

index b010fb0..b6e4a19 100644 (file)
@@ -226,13 +226,15 @@ for my $cross_partition_test (0..1) {
 
   # RT #73714 copy to file with leading whitespace failed
 
+  TODO: {
+  local $TODO = 'spaces in filenames require DECC$EFS_CHARSET enabled' if $^O eq 'VMS';
   open(F, ">file-$$") or die $!;
   close F;
   copy "file-$$", " copy-$$";
   ok -e " copy-$$", "copy with leading whitespace";
   unlink "file-$$" or die "unlink: $!";
   unlink " copy-$$" or die "unlink: $!";
-
+  }
 }