summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2003-09-16 19:10:58 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2003-09-16 19:10:58 +0000
commit5688dfbf25135c46a375b4553bc0b44f52b55b52 (patch)
tree9416fd59978e9c87681c6d887b02de5ec6c4c23c /t
parent40f422c75bf33f6da66b6b68e6416e11bad0ba61 (diff)
downloadperl-5688dfbf25135c46a375b4553bc0b44f52b55b52.tar.gz
More suggested patches for NCR MP-RAS from Andy Dougherty.
p4raw-id: //depot/perl@21249
Diffstat (limited to 't')
-rwxr-xr-xt/op/pack.t8
1 files changed, 7 insertions, 1 deletions
diff --git a/t/op/pack.t b/t/op/pack.t
index 3402376ec8..00e8609021 100755
--- a/t/op/pack.t
+++ b/t/op/pack.t
@@ -184,7 +184,13 @@ sub list_eq ($$) {
if (($^O eq 'VMS') && !defined($Config{useieee}));
skip("-- $^O has serious fp indigestion on w-packed infinities", 1)
- if (($^O eq 'mpeix') || ($^O eq 'ultrix'));
+ if (
+ ($^O eq 'mpeix')
+ ||
+ ($^O eq 'ultrix')
+ ||
+ ($^O eq 'svr4' && -f "/etc/issue" && -f "/etc/.relid") # NCR MP-RAS
+ );
my $inf = eval '2**10000';