From: Gurusamy Sarathy Date: Fri, 14 Mar 2003 04:29:10 +0000 (+0000) Subject: Config.t wasn't getting the sig_num and sig_size relationship X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a667ff70662bc9aa79513f1cbac0d483124162fa;p=p5sagit%2Fp5-mst-13.2.git Config.t wasn't getting the sig_num and sig_size relationship right, and therefore failed test#35 on windows note that config_h.SH documents that $sig_size does NOT include the final NULL in $sig_num! p4raw-id: //depot/perl@18967 --- diff --git a/lib/Config.t b/lib/Config.t index e44b55f..fc75d4c 100644 --- a/lib/Config.t +++ b/lib/Config.t @@ -122,7 +122,7 @@ ok( exists $Config{d_fork}, "still d_fork"); # Signal-related variables # (this is actually a regression test for Configure.) -ok((split / /, $Config{sig_num}) == $Config{sig_size}, "sig_size"); +ok((split / /, $Config{sig_num}) == $Config{sig_size}+1, "sig_size"); 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");