Commit 466a8915 authored by Josh Bleecher Snyder's avatar Josh Bleecher Snyder

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 <josharian@gmail.com>
Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
parent a047f72d
......@@ -9,9 +9,11 @@ import (
"bytes"
"crypto/tls"
"crypto/x509"
"internal/testenv"
"io"
"net"
"net/textproto"
"runtime"
"strings"
"testing"
"time"
......@@ -592,6 +594,9 @@ QUIT
`
func TestTLSClient(t *testing.T) {
if runtime.GOOS == "freebsd" && runtime.GOARCH == "amd64" {
testenv.SkipFlaky(t, 19229)
}
ln := newLocalListener(t)
defer ln.Close()
errc := make(chan error)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment