Skip to content

Commit 466a891

Browse files
committed
net/smtp: skip flaky TestTLSClient on freebsd/amd64
Updates #19229 Change-Id: Ibe1ea090ac064c7eb5abd225214ab43744bafbc4 Reviewed-on: https://go-review.googlesource.com/37653 Run-TryBot: Josh Bleecher Snyder <[email protected]> Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent a047f72 commit 466a891

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/net/smtp/smtp_test.go

+5
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@ import (
99
"bytes"
1010
"crypto/tls"
1111
"crypto/x509"
12+
"internal/testenv"
1213
"io"
1314
"net"
1415
"net/textproto"
16+
"runtime"
1517
"strings"
1618
"testing"
1719
"time"
@@ -592,6 +594,9 @@ QUIT
592594
`
593595

594596
func TestTLSClient(t *testing.T) {
597+
if runtime.GOOS == "freebsd" && runtime.GOARCH == "amd64" {
598+
testenv.SkipFlaky(t, 19229)
599+
}
595600
ln := newLocalListener(t)
596601
defer ln.Close()
597602
errc := make(chan error)

0 commit comments

Comments
 (0)