From 4f0676bfb00b62e81f6536b8f7f57cc0efc6e62d Mon Sep 17 00:00:00 2001 From: Steve Mynott Date: Sat, 21 Mar 2015 15:58:32 +0000 Subject: [PATCH] this reveals a bug in NetBSD libm - skip --- S03-operators/arith.t | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/S03-operators/arith.t b/S03-operators/arith.t index 5c3a94e07d..fcd3554ba1 100644 --- a/S03-operators/arith.t +++ b/S03-operators/arith.t @@ -243,8 +243,14 @@ is 2 ** 2 ** 3, 256, 'infix:<**> is right associative'; { is 0.9**Inf, 0, "0.9**Inf converges towards 0"; is 1.1**Inf, Inf, "1.1**Inf diverges towards Inf"; - #?niecza todo "No agreement over correct behavior here -- above web page not helpful!" - is 1**Inf, 1; + + if $*DISTRO.name eq 'netbsd' { + skip "NetBSD PR lib/49240"; + } + else { + is 1**Inf, 1, "1.1**Inf diverges towards Inf"; + } + } {