diff options
| author | Mikio Hara <mikioh.mikioh@gmail.com> | 2016-11-17 06:06:34 +0900 |
|---|---|---|
| committer | Brad Fitzpatrick <bradfitz@golang.org> | 2016-11-16 22:09:39 +0000 |
| commit | 81627f0e47f91a6e6e7bfd7c59b4e3ac596668ca (patch) | |
| tree | 8dcc7a9226bd29bf4eead50d177bf957be20c442 /src | |
| parent | 9f5673d9307572ff3b435a845470e3b7fd3c6a43 (diff) | |
| download | go-81627f0e47f91a6e6e7bfd7c59b4e3ac596668ca.tar.xz | |
net: deflake TestAcceptTimeout again
This is a followup to CL 33257.
It looks like active close operation at passive open side sometimes
takes a bit long time on Darwin.
Fixes #17948.
Change-Id: Ida17639c4e66a43e1be1f74fd0ef3baddde25092
Reviewed-on: https://go-review.googlesource.com/33258
Run-TryBot: Mikio Hara <mikioh.mikioh@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src')
| -rw-r--r-- | src/net/timeout_test.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/net/timeout_test.go b/src/net/timeout_test.go index f46b30a090..b916b83d20 100644 --- a/src/net/timeout_test.go +++ b/src/net/timeout_test.go @@ -176,8 +176,6 @@ func TestAcceptTimeout(t *testing.T) { t.Error(err) return } - var b [1]byte - c.Read(b[:]) c.Close() }() } |
