Skip to content

Commit 3042ba3

Browse files
author
Bryan C. Mills
committed
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>
1 parent 2c85fcd commit 3042ba3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/net/smtp/smtp_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -948,7 +948,7 @@ QUIT
948948
`
949949

950950
func TestTLSClient(t *testing.T) {
951-
if (runtime.GOOS == "freebsd" && runtime.GOARCH == "amd64") || runtime.GOOS == "js" {
951+
if runtime.GOOS == "freebsd" || runtime.GOOS == "js" {
952952
testenv.SkipFlaky(t, 19229)
953953
}
954954
ln := newLocalListener(t)

0 commit comments

Comments
 (0)