diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2003-03-14 04:29:10 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2003-03-14 04:29:10 +0000 |
commit | a667ff70662bc9aa79513f1cbac0d483124162fa (patch) | |
tree | e8b49a6ad51e164cc61ebe45650c4b66174b82bf /lib/Config.t | |
parent | 0afd3698e368e5016bd4d9f572d1bb76be6998eb (diff) | |
download | perl-a667ff70662bc9aa79513f1cbac0d483124162fa.tar.gz |
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
Diffstat (limited to 'lib/Config.t')
-rw-r--r-- | lib/Config.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Config.t b/lib/Config.t index e44b55f95c..fc75d4c553 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"); |