Commit 1b870077 authored by Brad Fitzpatrick's avatar Brad Fitzpatrick

net: skip flaky TestNotTemporaryRead on FreeBSD

Updates #25289

Change-Id: I662760b921be625aca988cd0b43c648ac5dfd814
Reviewed-on: https://go-review.googlesource.com/127837Reviewed-by: default avatarBryan C. Mills <bcmills@google.com>
Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
parent 9594ba4f
......@@ -9,6 +9,7 @@ package net
import (
"errors"
"fmt"
"internal/testenv"
"io"
"net/internal/socktest"
"os"
......@@ -521,6 +522,9 @@ func TestCloseUnblocksRead(t *testing.T) {
// Issue 24808: verify that ECONNRESET is not temporary for read.
func TestNotTemporaryRead(t *testing.T) {
if runtime.GOOS == "freebsd" {
testenv.SkipFlaky(t, 25289)
}
t.Parallel()
server := func(cs *TCPConn) error {
cs.SetLinger(0)
......
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