Skip the last test of Config.t on HP-UX.
Rafael Garcia-Suarez [Thu, 13 Mar 2003 21:47:52 +0000 (21:47 +0000)]
(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

lib/Config.t

index 6cdaa08..e44b55f 100644 (file)
@@ -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");
+}