1
0
mirror of https://github.com/golang/go synced 2024-11-21 14:24:44 -07:00

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
This commit is contained in:
Robert Griesemer 2011-06-01 15:19:34 -07:00
parent 59a190589a
commit 2132a7f575

View File

@ -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},
}