From d3da99118c57f98f64d30ad932cf3d9d49ffb728 Mon Sep 17 00:00:00 2001 From: Father Chrysostomos Date: Sat, 31 Dec 2011 11:02:50 -0800 Subject: sigsystem.t: put miniperl skip earlier MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Under minitest, extensions like constant.pm and Data::Dumper haven’t been processed yet, so they won’t be available. --- t/op/sigsystem.t | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 't') 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; -- cgit v1.2.1