We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a047f72 commit 466a891Copy full SHA for 466a891
src/net/smtp/smtp_test.go
@@ -9,9 +9,11 @@ import (
9
"bytes"
10
"crypto/tls"
11
"crypto/x509"
12
+ "internal/testenv"
13
"io"
14
"net"
15
"net/textproto"
16
+ "runtime"
17
"strings"
18
"testing"
19
"time"
@@ -592,6 +594,9 @@ QUIT
592
594
`
593
595
596
func TestTLSClient(t *testing.T) {
597
+ if runtime.GOOS == "freebsd" && runtime.GOARCH == "amd64" {
598
+ testenv.SkipFlaky(t, 19229)
599
+ }
600
ln := newLocalListener(t)
601
defer ln.Close()
602
errc := make(chan error)
0 commit comments