From: Bryan C. Mills Date: Tue, 7 Dec 2021 22:32:55 +0000 (-0500) Subject: net/smtp: skip TestTLSSClient on all freebsd platforms X-Git-Tag: go1.18beta1~51 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=3042ba34db86853c7035046716c4a00b2dbef2ed;p=gostls13.git 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 Run-TryBot: Bryan Mills TryBot-Result: Gopher Robot Reviewed-by: Ian Lance Taylor --- 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)