diff options
| author | Russ Cox <rsc@golang.org> | 2016-01-06 10:53:16 -0500 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2016-01-06 17:59:46 +0000 |
| commit | aec2f0cf855ac2d2b79ca3178dcd9f63c0b5afb0 (patch) | |
| tree | a7778647b8abd33b7fae7c88b2f25a8f268719d6 | |
| parent | 13ba968d750f0bbf8cb5214c366ef98adada1a85 (diff) | |
| download | go-aec2f0cf855ac2d2b79ca3178dcd9f63c0b5afb0.tar.xz | |
net: fix timeout test bug
This was supposed to be in CL 18205 but I submitted via the web
instead of from my computer, so it got lost.
May deflake some things.
Change-Id: I880fb74b5943b8a17f952a82639c60126701187a
Reviewed-on: https://go-review.googlesource.com/18259
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
| -rw-r--r-- | src/net/timeout_test.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/net/timeout_test.go b/src/net/timeout_test.go index 5832306591..98e3164fb9 100644 --- a/src/net/timeout_test.go +++ b/src/net/timeout_test.go @@ -996,7 +996,6 @@ func TestReadWriteDeadlineRace(t *testing.T) { if testing.Short() { N = 50 } - defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(4)) ln, err := newLocalListener("tcp") if err != nil { |
