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:
62e4c90
)
Fix skip_without_dynamic_extension to just skip
author
Jerry D. Hedden
<jdhedden@cpan.org>
Fri, 31 Aug 2012 20:36:00 +0000
(16:36 -0400)
committer
Father Chrysostomos
<sprout@cpan.org>
Fri, 31 Aug 2012 20:53:30 +0000
(13:53 -0700)
skip_without_dynamic_extension() mistakenly ends with skip_all()
instead of skip().
t/test.pl
patch
|
blob
|
history
diff --git
a/t/test.pl
b/t/test.pl
index
8a810f0
..
44a38dc
100644
(file)
--- a/
t/test.pl
+++ b/
t/test.pl
@@
-463,7
+463,7
@@
sub skip_without_dynamic_extension {
my ($extension) = @_;
skip("no dynamic loading on miniperl, no $extension") if is_miniperl();
return if &_have_dynamic_extension;
- skip
_all
("$extension was not built");
+ skip("$extension was not built");
}
sub todo_skip {