projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8676566
)
Skip non-functional glob test on VMS.
author
Craig A. Berry
<craigberry@mac.com>
Tue, 6 Nov 2012 13:02:51 +0000
(07:02 -0600)
committer
Craig A. Berry
<craigberry@mac.com>
Tue, 6 Nov 2012 13:22:57 +0000
(07:22 -0600)
ext/File-Glob/t/rt114984.t
patch
|
blob
|
history
diff --git
a/ext/File-Glob/t/rt114984.t
b/ext/File-Glob/t/rt114984.t
index
4229c6b
..
285bb70
100644
(file)
--- 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);