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 <rfindley@google.com>
Run-TryBot: Robert Findley <rfindley@google.com>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Robert Griesemer <gri@golang.org>
This commit is contained in:
Robert Findley 2021-08-14 00:03:09 -04:00
parent 0a0a160d4d
commit ff3469b1c2

13
src/cmd/dist/test.go vendored
View file

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