From: Alan Donovan Date: Mon, 28 Jan 2013 23:26:26 +0000 (-0500) Subject: exp/gotype: fix build breakage due to https://code.google.com/p/go/source/detail... X-Git-Tag: go1.1rc2~1272 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=3c51a69937c2bd99c746007c99b9b44d44a0060b;p=gostls13.git exp/gotype: fix build breakage due to https://code.google.com/p/go/source/detail?r=ca5e5de48173 Add 'math/big' to blacklist of packages that use shift operations as yet unsupported by go/types. (The failure was masked due to local bugfixes in my client.) R=rsc, bradfitz, bradfitz CC=golang-dev https://golang.org/cl/7220057 --- diff --git a/src/pkg/exp/gotype/gotype_test.go b/src/pkg/exp/gotype/gotype_test.go index 405093b2ae..67ab7cfa74 100644 --- a/src/pkg/exp/gotype/gotype_test.go +++ b/src/pkg/exp/gotype/gotype_test.go @@ -150,7 +150,7 @@ var tests = []string{ "log/syslog", // "math", - "math/big", + //"math/big", "math/cmplx", "math/rand",