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
(from parent 1:
a5446a6
)
Wrong skip count in t/op/stash.t
author
Michael G Schwern
<schwern@pobox.com>
Sun, 12 Jul 2009 09:38:42 +0000
(
02:38
-0700)
committer
Vincent Pit
<perl@profvince.com>
Sun, 12 Jul 2009 10:14:15 +0000
(12:14 +0200)
stash.t has the wrong number of tests to skip when dynamic loading is not
available breaking minitest.
t/op/stash.t
patch
|
blob
|
blame
|
history
diff --git
a/t/op/stash.t
b/t/op/stash.t
index
546bf9f
..
57c8659
100644
(file)
--- a/
t/op/stash.t
+++ b/
t/op/stash.t
@@
-65,7
+65,7
@@
ok( !eval q{ defined %schoenmaker:: }, 'works in eval("")' );
}
SKIP: {
- eval { require B; 1 } or skip "no B", 1
2
;
+ eval { require B; 1 } or skip "no B", 1
8
;
*b = \&B::svref_2object;
my $CVf_ANON = B::CVf_ANON();