Subject: | VMS edits for directory and filenames. |
Thanks for Perl::Squish.
These edits were required to get all tests to pass for version 0.03
on VMS Perl 5.8.7
On VMS ODS-2 (the standard and most common VMS filesystem) directory
names cannot contain a period, and filenames can only contain one
period. I also read that other file systems on other platforms can
not have more than period in a filename.
Cheers,
Peter (Stig) Edwards
makefile.pl
<< no_index directory => 't.data';
Show quoted text
>> no_index directory => 't_data';
manifest
<< t.data/sample1.pm
<< t.data/sample1.pm.squish
<< t/01_compile.t
Show quoted text>> t_data/sample1.pm
>> t_data/sample1.pm_squish
>> t/01_compile.t
t/02_practical.t
<< my $testdir = 't.data';
Show quoted text>> my $testdir = 't_data';
<< my $output = "$input.squish";
<< my $copy = "$input.copy";
<< my $copy2 = "$input.copy2";
Show quoted text>> my $output = $input.'_squish';
>> my $copy = $input.'_copy';
>> my $copy2 = $input.'_copy2';
Ref.
http://en.wikipedia.org/wiki/OpenVMS_filesystem#Disk_organization_and_na
ming
http://perldoc.perl.org/perlport.html#Files-and-Filesystems