mirror of
https://github.com/golang/go
synced 2024-11-24 01:30:10 -07:00
math/big: fix test for 32bit platforms (fix build)
Change-Id: I73509cd0e0866cfe2b2ae46a26fb4d043dd050c4 Reviewed-on: https://go-review.googlesource.com/5840 Reviewed-by: Alan Donovan <adonovan@google.com> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
parent
5ce9fde8b6
commit
c4b8f9127a
@ -169,8 +169,6 @@ func TestFloatSetMantExp(t *testing.T) {
|
||||
{"0", -MaxExp - 1, "0"},
|
||||
{"0.5", -MaxExp - 1, "+Inf"}, // exponent overflow
|
||||
{"-0.5", -MaxExp - 1, "-Inf"}, // exponent overflow
|
||||
{"0.5", MaxExp + 1, "+Inf"}, // exponent overflow
|
||||
{"-0.5", MaxExp + 1, "-Inf"}, // exponent overflow
|
||||
{"1", MaxExp, "+Inf"}, // exponent overflow
|
||||
{"2", MaxExp - 1, "+Inf"}, // exponent overflow
|
||||
{"0.75", 1, "1.5"},
|
||||
|
Loading…
Reference in New Issue
Block a user