aboutsummaryrefslogtreecommitdiff
path: root/src/math/big/arith_test.go
diff options
context:
space:
mode:
authorDominik Honnef <dominik@honnef.co>2016-03-21 00:13:36 +0100
committerBrad Fitzpatrick <bradfitz@golang.org>2016-03-21 07:10:08 +0000
commitb2cf57104090b0cc148c0608f10f33cdfb48ec11 (patch)
treef93b22537cc79468014fa6d82ca1e4975d3a8e91 /src/math/big/arith_test.go
parent1a82946ea5a98f5e7a7ec416bc83a7cba701e9b8 (diff)
downloadgo-b2cf57104090b0cc148c0608f10f33cdfb48ec11.tar.gz
go-b2cf57104090b0cc148c0608f10f33cdfb48ec11.zip
all: delete dead test code
This deletes unused code and helpers from tests. Change-Id: Ie31d46115f558ceb8da6efbf90c3c204e03b0d7e Reviewed-on: https://go-review.googlesource.com/20927 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
Diffstat (limited to 'src/math/big/arith_test.go')
-rw-r--r--src/math/big/arith_test.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/math/big/arith_test.go b/src/math/big/arith_test.go
index ea8e82d0b6..7d2f69a751 100644
--- a/src/math/big/arith_test.go
+++ b/src/math/big/arith_test.go
@@ -158,21 +158,6 @@ var sumVW = []argVW{
{nat{585}, nat{314}, 271, 0},
}
-var prodVW = []argVW{
- {},
- {nat{0}, nat{0}, 0, 0},
- {nat{0}, nat{_M}, 0, 0},
- {nat{0}, nat{0}, _M, 0},
- {nat{1}, nat{1}, 1, 0},
- {nat{22793}, nat{991}, 23, 0},
- {nat{0, 0, 0, 22793}, nat{0, 0, 0, 991}, 23, 0},
- {nat{0, 0, 0, 0}, nat{7893475, 7395495, 798547395, 68943}, 0, 0},
- {nat{0, 0, 0, 0}, nat{0, 0, 0, 0}, 894375984, 0},
- {nat{_M << 1 & _M}, nat{_M}, 1 << 1, _M >> (_W - 1)},
- {nat{_M << 7 & _M}, nat{_M}, 1 << 7, _M >> (_W - 7)},
- {nat{_M << 7 & _M, _M, _M, _M}, nat{_M, _M, _M, _M}, 1 << 7, _M >> (_W - 7)},
-}
-
var lshVW = []argVW{
{},
{nat{0}, nat{0}, 0, 0},