aboutsummaryrefslogtreecommitdiff
path: root/src/os
diff options
context:
space:
mode:
authorDamien Neil <dneil@google.com>2021-05-26 11:28:01 -0700
committerDamien Neil <dneil@google.com>2021-05-26 22:43:54 +0000
commit1d5298d46a695219ab4622ae5aa59898459fd0f5 (patch)
tree4558ffd7ab4a69dbe21ef366bac8c6b2fabedfc3 /src/os
parent0fbecece98977f6d0578cef1e8f3ae00a54c8ac4 (diff)
downloadgo-1d5298d46a695219ab4622ae5aa59898459fd0f5.tar.gz
go-1d5298d46a695219ab4622ae5aa59898459fd0f5.zip
doc/go1.17: document net/... changes
For #44513. Fixes #46014. Fixes #46015. Fixes #46016. Fixes #46017. Change-Id: I356483d68d07159281dfe2ea1e49430ddf200973 Reviewed-on: https://go-review.googlesource.com/c/go/+/322891 Trust: Damien Neil <dneil@google.com> Run-TryBot: Damien Neil <dneil@google.com> Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src/os')
-rw-r--r--src/os/pipe_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/pipe_test.go b/src/os/pipe_test.go
index b663618502..b3d5380b8d 100644
--- a/src/os/pipe_test.go
+++ b/src/os/pipe_test.go
@@ -462,7 +462,7 @@ func TestFdReadRace(t *testing.T) {
// Give the other goroutine a chance to enter the Read.
// It doesn't matter if this occasionally fails, the test
// will still pass, it just won't test anything.
- time.Sleep(10 * time.Millisecond)
+ //time.Sleep(10 * time.Millisecond)
r.Fd()
// The bug was that Fd would hang until Read timed out.