Skip to content

Commit

Permalink
net/smtp: skip flaky TestTLSClient on freebsd/amd64
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
josharian committed Mar 1, 2017
1 parent a047f72 commit 466a891
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/net/smtp/smtp_test.go
Expand Up @@ -9,9 +9,11 @@ import (
"bytes"
"crypto/tls"
"crypto/x509"
"internal/testenv"
"io"
"net"
"net/textproto"
"runtime"
"strings"
"testing"
"time"
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 466a891

Please sign in to comment.