Commit 2132a7f5 authored by Robert Griesemer's avatar Robert Griesemer

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
parent 59a19058
......@@ -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},
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment