Commit c4b8f912 authored by Robert Griesemer's avatar Robert Griesemer

math/big: fix test for 32bit platforms (fix build)

Change-Id: I73509cd0e0866cfe2b2ae46a26fb4d043dd050c4
Reviewed-on: https://go-review.googlesource.com/5840Reviewed-by: 's avatarAlan Donovan <adonovan@google.com>
Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
parent 5ce9fde8
......@@ -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"},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment