From: Robert Findley Date: Sat, 14 Aug 2021 04:03:09 +0000 (-0400) Subject: cmd/dist: remove tests using the typeparams build tag X-Git-Tag: go1.18beta1~1798 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=ff3469b1c2;p=gostls13.git cmd/dist: remove tests using the typeparams build tag This stanza is no longer necessary now that the typeparams build tag is not used. Change-Id: I7bcc4a01e354e5130d50b00895a5b96c25c71502 Reviewed-on: https://go-review.googlesource.com/c/go/+/342153 Trust: Robert Findley Run-TryBot: Robert Findley TryBot-Result: Go Bot Reviewed-by: Robert Griesemer --- diff --git a/src/cmd/dist/test.go b/src/cmd/dist/test.go index f40fa926df..a104b5c8f3 100644 --- a/src/cmd/dist/test.go +++ b/src/cmd/dist/test.go @@ -491,19 +491,6 @@ func (t *tester) registerTests() { }) } - // Test go/... cmd/gofmt with type parameters enabled. - if !t.compileOnly { - t.tests = append(t.tests, distTest{ - name: "tyepparams", - heading: "go/... and cmd/gofmt tests with tag typeparams", - fn: func(dt *distTest) error { - t.addCmd(dt, "src", t.goTest(), t.timeout(300), "-tags=typeparams", "go/...") - t.addCmd(dt, "src", t.goTest(), t.timeout(300), "-tags=typeparams", "cmd/gofmt") - return nil - }, - }) - } - if t.iOS() && !t.compileOnly { t.tests = append(t.tests, distTest{ name: "x509omitbundledroots",