From: Rafael Garcia-Suarez Date: Thu, 13 Mar 2003 21:47:52 +0000 (+0000) Subject: Skip the last test of Config.t on HP-UX. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=14827c03e293720afa3496beb08b4d239bd4526d;p=p5sagit%2Fp5-mst-13.2.git Skip the last test of Config.t on HP-UX. (This test should be skipped for every system that actually defines a negative signal number. Maybe that test should be removed, to be future-proof.) p4raw-id: //depot/perl@18964 --- diff --git a/lib/Config.t b/lib/Config.t index 6cdaa08..e44b55f 100644 --- a/lib/Config.t +++ b/lib/Config.t @@ -123,4 +123,7 @@ ok( exists $Config{d_fork}, "still d_fork"); # (this is actually a regression test for Configure.) ok((split / /, $Config{sig_num}) == $Config{sig_size}, "sig_size"); -like($Config{sig_num}, qr/^[ \d]+\z/, "sig_num has only positive numbers"); +SKIP : { + if ($^O eq 'hpux') { skip "HP-UX has SIGRTM(IN|AX) == -1" } + like($Config{sig_num}, qr/^[ \d]+\z/, "sig_num has only positive numbers"); +}