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:
a930c51
)
Skip maintainers.t on VMS.
author
Craig A. Berry
<craigberry@mac.com>
Sun, 16 Aug 2009 23:43:35 +0000
(18:43 -0500)
committer
Craig A. Berry
<craigberry@mac.com>
Sun, 16 Aug 2009 23:43:35 +0000
(18:43 -0500)
The home-grown glob() only does basic wildcarding, not patterns of
the form foo.{pm,t}, of which there are quite a few in Maintainers.pl.
t/lib/maintainers.t
patch
|
blob
|
blame
|
history
diff --git
a/t/lib/maintainers.t
b/t/lib/maintainers.t
index
4a6ed26
..
3b7d299
100644
(file)
--- a/
t/lib/maintainers.t
+++ b/
t/lib/maintainers.t
@@
-17,6
+17,10
@@
use strict;
use warnings;
use Maintainers qw(show_results process_options finish_tap_output);
+if ($^O eq 'VMS') {
+ print "1..0 # Skip: home-grown glob doesn't handle fancy patterns\n";
+ exit 0;
+}
{
local @ARGV = qw|--tap-output --checkmani|;