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:
c62f68e
)
Correct skip count in perlio.t
author
Father Chrysostomos
<sprout@cpan.org>
Sun, 17 Jul 2011 05:09:46 +0000
(22:09 -0700)
committer
Father Chrysostomos
<sprout@cpan.org>
Sun, 17 Jul 2011 05:09:46 +0000
(22:09 -0700)
This makes it pass under miniperl again.
t/io/perlio.t
patch
|
blob
|
blame
|
history
diff --git
a/t/io/perlio.t
b/t/io/perlio.t
index
a65b0d3
..
42619b5
100644
(file)
--- a/
t/io/perlio.t
+++ b/
t/io/perlio.t
@@
-132,7
+132,7
@@
sub find_filename {
SKIP: {
eval { require PerlIO::scalar };
unless (find PerlIO::Layer 'scalar') {
- skip("PerlIO::scalar not found",
9
);
+ skip("PerlIO::scalar not found",
11
);
}
my $var;
ok( open(my $x,"+<",\$var), 'magic in-memory file via 3 arg open with \\$var');