aboutsummaryrefslogtreecommitdiff
path: root/src/math
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2015-02-25 15:45:25 -0800
committerRobert Griesemer <gri@golang.org>2015-02-26 00:15:04 +0000
commit9c4aade584ecc34e714d172a1bb87a8430de2f41 (patch)
tree48892c66e7633a88ea9faca72930d4b7ebad49b3 /src/math
parent7d7351395da5e8cb3325346c98e00b9df0069363 (diff)
downloadgo-9c4aade584ecc34e714d172a1bb87a8430de2f41.tar.xz
math/big: fix build for 32bit platforms
Change-Id: I9c217e5140294a17e4feb65da5b121ee8d8cadc2 Reviewed-on: https://go-review.googlesource.com/6050 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/math')
-rw-r--r--src/math/big/float_test.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/math/big/float_test.go b/src/math/big/float_test.go
index bbab7676bb..35ab5a4710 100644
--- a/src/math/big/float_test.go
+++ b/src/math/big/float_test.go
@@ -121,13 +121,9 @@ func TestFloatSetPrec(t *testing.T) {
// prec at upper limit
{"0", MaxPrec, "0", Exact},
- {"0", MaxPrec + 1, "0", Exact},
{"-0", MaxPrec, "-0", Exact},
- {"-0", MaxPrec + 1, "-0", Exact},
{"-Inf", MaxPrec, "-Inf", Exact},
- {"+Inf", MaxPrec + 1, "+Inf", Exact},
{"-Inf", MaxPrec, "-Inf", Exact},
- {"+Inf", MaxPrec + 1, "+Inf", Exact},
// just a few regular cases - general rounding is tested elsewhere
{"1.5", 1, "2", Above},