Spaces in filenames require non-default settings on VMS.
Craig A. Berry [Sun, 28 Mar 2010 19:58:54 +0000 (14:58 -0500)]
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: $!";
-
+  }
 }