From: Robert Griesemer Date: Wed, 1 Jun 2011 22:19:34 +0000 (-0700) Subject: fix build: remove non-portable test case X-Git-Tag: weekly.2011-06-02~25 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=2132a7f575cba670eeffde495c0bb2df120c2c5b;p=gostls13.git 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 --- 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}, }