summaryrefslogtreecommitdiff
path: root/t/test.pl
diff options
context:
space:
mode:
authorJerry D. Hedden <jdhedden@cpan.org>2012-08-31 16:36:00 -0400
committerFather Chrysostomos <sprout@cpan.org>2012-08-31 13:53:30 -0700
commit688af3a746497769b32fe6c583bfd0e63611ecc8 (patch)
treed3d6cae90f7d2f87241744925d8badd96be62d61 /t/test.pl
parent62e4c90a271e4c9a7e8d172f3d36399885df56bc (diff)
downloadperl-688af3a746497769b32fe6c583bfd0e63611ecc8.tar.gz
Fix skip_without_dynamic_extension to just skip
skip_without_dynamic_extension() mistakenly ends with skip_all() instead of skip().
Diffstat (limited to 't/test.pl')
-rw-r--r--t/test.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/test.pl b/t/test.pl
index 8a810f0499..44a38dc6ef 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 {