summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2011-12-31 11:02:50 -0800
committerFather Chrysostomos <sprout@cpan.org>2011-12-31 11:37:06 -0800
commitd3da99118c57f98f64d30ad932cf3d9d49ffb728 (patch)
tree0edd14177f69c51889eaf319731d32f8b08d3b2b /t
parent2bb8ca8d410c837417e06a32b0220a5105fab404 (diff)
downloadperl-d3da99118c57f98f64d30ad932cf3d9d49ffb728.tar.gz
sigsystem.t: put miniperl skip earlier
Under minitest, extensions like constant.pm and Data::Dumper haven’t been processed yet, so they won’t be available.
Diffstat (limited to 't')
-rw-r--r--t/op/sigsystem.t3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/op/sigsystem.t b/t/op/sigsystem.t
index c20d9d2b31..ec7f049560 100644
--- a/t/op/sigsystem.t
+++ b/t/op/sigsystem.t
@@ -2,6 +2,7 @@
BEGIN {
require './test.pl';
+ skip_all_if_miniperl();
}
use strict;
@@ -11,7 +12,7 @@ use Data::Dumper;
plan tests => 4;
SKIP: {
- skip 'Platform doesn\'t support SIGCHLD', 4 if is_miniperl() or not exists $SIG{CHLD};
+ skip 'Platform doesn\'t support SIGCHLD', 4 if not exists $SIG{CHLD};
require POSIX;
require Time::HiRes;