Skip to content

Commit

Permalink
this reveals a bug in NetBSD libm - skip
Browse files Browse the repository at this point in the history
  • Loading branch information
stmuk committed Mar 21, 2015
1 parent 50d2fcb commit 4f0676b
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions S03-operators/arith.t
Expand Up @@ -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";
}

}

{
Expand Down

0 comments on commit 4f0676b

Please sign in to comment.