1
0
mirror of https://github.com/golang/go synced 2024-11-23 23:00:03 -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:
Robert Griesemer 2015-02-24 13:54:42 -08:00
parent 5ce9fde8b6
commit c4b8f9127a

View File

@ -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"},