This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0169d36
)
Skip t/porting/exec-bit.t on VMS.
author
Craig A. Berry
<craigberry@mac.com>
Wed, 23 Mar 2011 02:05:16 +0000
(21:05 -0500)
committer
Craig A. Berry
<craigberry@mac.com>
Wed, 23 Mar 2011 02:05:16 +0000
(21:05 -0500)
It would need some porting to work. In particular, filename case
is not preserved by default, so it's trying a lot of matches that
won't match.
t/porting/exec-bit.t
patch
|
blob
|
blame
|
history
diff --git
a/t/porting/exec-bit.t
b/t/porting/exec-bit.t
index
482654a
..
02506c7
100644
(file)
--- a/
t/porting/exec-bit.t
+++ b/
t/porting/exec-bit.t
@@
-11,6
+11,10
@@
if ( $^O eq "MSWin32" ) {
skip_all( "-x on MSWin32 only indicates file has executable suffix. Try Cygwin?" );
}
+if ( $^O eq "VMS" ) {
+ skip_all( "Filename case may not be preserved and other porting issues." );
+}
+
plan('no_plan');
use ExtUtils::Manifest qw(maniread);