From: Craig A. Berry Date: Sun, 16 Aug 2009 23:43:35 +0000 (-0500) Subject: Skip maintainers.t on VMS. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=663b33b066e6a7d2a632a63aa943090e50d649c8;p=p5sagit%2Fp5-mst-13.2.git 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. --- 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|;