From e4c2360c9240fd11f1ae487c40a1295c9122aed4 Mon Sep 17 00:00:00 2001 From: "Craig A. Berry" Date: Tue, 6 Nov 2012 07:02:51 -0600 Subject: [PATCH] Skip non-functional glob test on VMS. --- ext/File-Glob/t/rt114984.t | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/ext/File-Glob/t/rt114984.t b/ext/File-Glob/t/rt114984.t index 4229c6b..285bb70 100644 --- a/ext/File-Glob/t/rt114984.t +++ b/ext/File-Glob/t/rt114984.t @@ -3,7 +3,13 @@ use warnings; use v5.16.0; use File::Temp 'tempdir'; use File::Spec::Functions; -use Test::More tests => 1; +use Test::More; + +BEGIN { + plan skip_all => "Home-grown glob does not do character classes on $^O" if $^O eq 'VMS'; +} + +plan tests => 1; my @md = (1..305); my @mp = (1000..1205); -- 2.7.4