diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-03-25 16:55:03 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-03-25 16:55:03 +0000 |
commit | 553b5000d7907cb0cb8f4658c1d6a2aac379415b (patch) | |
tree | a64a56cec3619cd28227a69b2c3bbe4babbfd89f /lib/ExtUtils/t | |
parent | 038ae9a45711aea142f721498a4a61353b40c4e4 (diff) | |
download | perl-553b5000d7907cb0cb8f4658c1d6a2aac379415b.tar.gz |
Patches for VMS by Craig Berry from
http://rt.cpan.org/Public/Bug/Display.html?id=34095
(1.50 has 3 failures on VMS)
p4raw-id: //depot/perl@33567
Diffstat (limited to 'lib/ExtUtils/t')
-rw-r--r-- | lib/ExtUtils/t/Installapi2.t | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/ExtUtils/t/Installapi2.t b/lib/ExtUtils/t/Installapi2.t index 0b9ba0d90e..c59b8abb38 100644 --- a/lib/ExtUtils/t/Installapi2.t +++ b/lib/ExtUtils/t/Installapi2.t @@ -208,7 +208,10 @@ close DUMMY; ok( -d 'install-test/other_lib/perl', 'install made other dir' ); ok( -r 'install-test/other_lib/perl/Big/Dummy.pm', ' .pm file installed' ); ok( -r 'install-test/packlist', ' packlist exists' ); - ok( (stat $tfile)[9]==(stat$sfile)[9],' Times are same'); +SKIP: { + skip "Times not preserved during copy by default", 1 if $^O eq 'VMS'; + ok( (stat $tfile)[9]==(stat $sfile)[9],' Times are same'); +} ok( !$result{install_unchanged},' $result{install_unchanged} should be empty'); } # Test nothing is copied. @@ -232,4 +235,4 @@ close DUMMY; ok( (stat $tfile)[9]!=(stat$sfile)[9],' Times are different'); ok( !$result{install},' nothing should have been installed'); ok( $result{install_unchanged},' install_unchanged should be populated'); -}
\ No newline at end of file +} |