aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2011-06-01 15:19:34 -0700
committerRobert Griesemer <gri@golang.org>2011-06-01 15:19:34 -0700
commit2132a7f575cba670eeffde495c0bb2df120c2c5b (patch)
tree012da45f1ea917b61454e7a9f02328a11abf1a32
parent59a190589a86a3c77200e5b76c912210ff8148ac (diff)
downloadgo-2132a7f575cba670eeffde495c0bb2df120c2c5b.tar.gz
go-2132a7f575cba670eeffde495c0bb2df120c2c5b.zip
fix build: remove non-portable test case
On a 32bit machine, the big.Words are only 32bit. R=rsc CC=golang-dev https://golang.org/cl/4561055
-rwxr-xr-xsrc/pkg/big/nat_test.go6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/pkg/big/nat_test.go b/src/pkg/big/nat_test.go
index c358cc8cda..50ea469be0 100755
--- a/src/pkg/big/nat_test.go
+++ b/src/pkg/big/nat_test.go
@@ -251,12 +251,6 @@ var natScanTests = []struct {
{"0x", 16, nil, 16, true, 'x'},
{"0xdeadbeef", 0, nat{0xdeadbeef}, 16, true, 0},
{"0XDEADBEEF", 0, nat{0xdeadbeef}, 16, true, 0},
- {"0xfedcba9876543213fedcba9876543212fedcba9876543211fedcba9876543210",
- 0,
- nat{0xfedcba9876543210, 0xfedcba9876543211, 0xfedcba9876543212, 0xfedcba9876543213},
- 16,
- true,
- 0},
}