Message-ID: <Pine.OSF.4.10.
10106121927580.15174-100000@aspara.forte.com>
p4raw-id: //depot/perl@10552
if (@donetests == 2) {
print "not " unless $donetests[0] == 0;
print "ok 11\n";
- print "not " unless $donetests[1] == 0;
- print "ok 12\n";
+ if ($^O eq 'VMS') {
+ # The open attempt on FROM in File::Compare::compare should fail
+ # on this OS since files are not shared by default.
+ print "not " unless $donetests[1] == -1;
+ print "ok 12\n";
+ }
+ else {
+ print "not " unless $donetests[1] == 0;
+ print "ok 12\n";
+ }
}
else {
print "ok 11# Skip\nok 12 # Skip Likely due to File::Temp\n";