diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-12-31 11:02:50 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-12-31 11:37:06 -0800 |
commit | d3da99118c57f98f64d30ad932cf3d9d49ffb728 (patch) | |
tree | 0edd14177f69c51889eaf319731d32f8b08d3b2b /t/op/sigsystem.t | |
parent | 2bb8ca8d410c837417e06a32b0220a5105fab404 (diff) | |
download | perl-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/op/sigsystem.t')
-rw-r--r-- | t/op/sigsystem.t | 3 |
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; |