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.
# 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: $!";
-
+ }
}