In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/688af3a746497769b32fe6c583bfd0e63611ecc8?hp=62e4c90a271e4c9a7e8d172f3d36399885df56bc>
- Log ----------------------------------------------------------------- commit 688af3a746497769b32fe6c583bfd0e63611ecc8 Author: Jerry D. Hedden <[email protected]> Date: Fri Aug 31 16:36:00 2012 -0400 Fix skip_without_dynamic_extension to just skip skip_without_dynamic_extension() mistakenly ends with skip_all() instead of skip(). ----------------------------------------------------------------------- Summary of changes: t/test.pl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/t/test.pl b/t/test.pl index 8a810f0..44a38dc 100644 --- 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 { -- Perl5 Master Repository
