net/smtp: skip TestTLSSClient on all freebsd platforms

This test seems like it needs attention from a TLS and/or FreeBSD
expert. In the meantime, it needs to stop causing noise on the build
dashboard.

For #19229

Change-Id: If7e9e3533ae7cb29006a670c3e9df90512dcf9f2
Reviewed-on: https://go-review.googlesource.com/c/go/+/370137
Trust: Bryan Mills <bcmills@google.com>
Run-TryBot: Bryan Mills <bcmills@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
This commit is contained in:
Bryan C. Mills 2021-12-07 17:32:55 -05:00 committed by Bryan Mills
parent 2c85fcd47d
commit 3042ba34db
1 changed files with 1 additions and 1 deletions

View File

@ -948,7 +948,7 @@ QUIT
`
func TestTLSClient(t *testing.T) {
if (runtime.GOOS == "freebsd" && runtime.GOARCH == "amd64") || runtime.GOOS == "js" {
if runtime.GOOS == "freebsd" || runtime.GOOS == "js" {
testenv.SkipFlaky(t, 19229)
}
ln := newLocalListener(t)