1
0
mirror of https://github.com/golang/go synced 2024-11-18 09:54:57 -07:00

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: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Josh Bleecher Snyder 2017-03-01 13:40:24 -08:00
parent a047f72dcf
commit 466a8915e3

View File

@ -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)