Skip maintainers.t on VMS.
Craig A. Berry [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

index 4a6ed26..3b7d299 100644 (file)
@@ -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|;