(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
# (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");
+}