Commit 8047093e authored by Brad Fitzpatrick's avatar Brad Fitzpatrick

net: reenable a previously skipped test

Update #8859

Change-Id: I5b0005b308e83954a495f06d27b7d8d30e813820
Reviewed-on: https://go-review.googlesource.com/8193Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
parent ffc22993
......@@ -494,13 +494,11 @@ func TestTCPConcurrentAccept(t *testing.T) {
func TestTCPReadWriteAllocs(t *testing.T) {
switch runtime.GOOS {
case "nacl", "windows", "darwin", "dragonfly":
case "nacl", "windows":
// NaCl needs to allocate pseudo file descriptor
// stuff. See syscall/fd_nacl.go.
// Windows uses closures and channels for IO
// completion port-based netpoll. See fd_windows.go.
// Darwin is unreliable for unknown reasons (issue 8859).
// Dragonfly also unreliable (lumped into issue 8859).
t.Skipf("not supported on %s", runtime.GOOS)
}
......
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