This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8b030b3
)
Skip the right number of tests in DosGlob.t.
author
Craig A. Berry
<craigberry@mac.com>
Sun, 30 Jan 2011 22:47:32 +0000
(16:47 -0600)
committer
Craig A. Berry
<craigberry@mac.com>
Sun, 30 Jan 2011 22:47:32 +0000
(16:47 -0600)
Three times three is nine, last I checked. Follow-up to:
dd2d1456ae6cdb1b6f476dd4923e18c36a45b6ea
lib/File/DosGlob.t
patch
|
blob
|
blame
|
history
diff --git
a/lib/File/DosGlob.t
b/lib/File/DosGlob.t
index
f942272
..
9227cb9
100644
(file)
--- a/
lib/File/DosGlob.t
+++ b/
lib/File/DosGlob.t
@@
-101,7
+101,7
@@
is("@r", "@s", 'global override');
# NB. The spaces in the glob patterns need to be backslash escaped.
my $filename_containing_parens = "foo (123) bar";
SKIP: {
- skip("can't create '$filename_containing_parens': $!",
12
)
+ skip("can't create '$filename_containing_parens': $!",
9
)
unless open my $touch, ">", $filename_containing_parens;
close $touch;