In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/663b33b066e6a7d2a632a63aa943090e50d649c8?hp=a930c511fcc6cf6f5ef849a9a4a028ff1cd6e27a>

- Log -----------------------------------------------------------------
commit 663b33b066e6a7d2a632a63aa943090e50d649c8
Author: Craig A. Berry <[email protected]>
Date:   Sun Aug 16 18:43:35 2009 -0500

    Skip maintainers.t on VMS.
    
    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.
-----------------------------------------------------------------------

Summary of changes:
 t/lib/maintainers.t |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/t/lib/maintainers.t b/t/lib/maintainers.t
index 4a6ed26..3b7d299 100644
--- 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|;

--
Perl5 Master Repository

Reply via email to