Config.t wasn't getting the sig_num and sig_size relationship
Gurusamy Sarathy [Fri, 14 Mar 2003 04:29:10 +0000 (04:29 +0000)]
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

lib/Config.t

index e44b55f..fc75d4c 100644 (file)
@@ -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");