aboutsummaryrefslogtreecommitdiff
path: root/src/net
diff options
context:
space:
mode:
authorBryan C. Mills <bcmills@google.com>2021-12-07 17:32:55 -0500
committerBryan Mills <bcmills@google.com>2021-12-08 15:34:19 +0000
commit3042ba34db86853c7035046716c4a00b2dbef2ed (patch)
tree74bce2cff6e011f843abd52f5224a9d964f752ea /src/net
parent2c85fcd47d6804d94a1fa4da65f756200ecf57a8 (diff)
downloadgo-3042ba34db86853c7035046716c4a00b2dbef2ed.tar.gz
go-3042ba34db86853c7035046716c4a00b2dbef2ed.zip
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>
Diffstat (limited to 'src/net')
-rw-r--r--src/net/smtp/smtp_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/smtp/smtp_test.go b/src/net/smtp/smtp_test.go
index 55219372d2..0f758f4a33 100644
--- a/src/net/smtp/smtp_test.go
+++ b/src/net/smtp/smtp_test.go
@@ -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)