]> Cypherpunks repositories - gostls13.git/commitdiff
net/smtp: skip TestTLSSClient on all freebsd platforms
authorBryan C. Mills <bcmills@google.com>
Tue, 7 Dec 2021 22:32:55 +0000 (17:32 -0500)
committerBryan Mills <bcmills@google.com>
Wed, 8 Dec 2021 15:34:19 +0000 (15:34 +0000)
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>
src/net/smtp/smtp_test.go

index 55219372d278c7f4a38f0434534303947ab45e35..0f758f4a339414720dd23278a23920bc1e48cba2 100644 (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)