From 2132a7f575cba670eeffde495c0bb2df120c2c5b Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Wed, 1 Jun 2011 15:19:34 -0700 Subject: [PATCH] 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 --- src/pkg/big/nat_test.go | 6 ------ 1 file changed, 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}, }