diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-03-13 21:47:52 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-03-13 21:47:52 +0000 |
commit | 14827c03e293720afa3496beb08b4d239bd4526d (patch) | |
tree | c00b74fddee2ef09596b5afedc20c3a843aa325d /lib/Config.t | |
parent | ab5fe4d6aaf45c57b7af4b994a730291eee17efa (diff) | |
download | perl-14827c03e293720afa3496beb08b4d239bd4526d.tar.gz |
Skip the last test of Config.t on HP-UX.
(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
Diffstat (limited to 'lib/Config.t')
-rw-r--r-- | lib/Config.t | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/Config.t b/lib/Config.t index 6cdaa088af..e44b55f95c 100644 --- a/lib/Config.t +++ b/lib/Config.t @@ -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"); +} |