From 8047093e5b7e8eaf8fad5825b6e761124004a1ed Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Fri, 27 Mar 2015 10:19:17 +0100 Subject: [PATCH] net: reenable a previously skipped test Update #8859 Change-Id: I5b0005b308e83954a495f06d27b7d8d30e813820 Reviewed-on: https://go-review.googlesource.com/8193 Reviewed-by: Ian Lance Taylor --- src/net/tcp_test.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/net/tcp_test.go b/src/net/tcp_test.go index 36d4445a6e..f9a340d2d3 100644 --- a/src/net/tcp_test.go +++ b/src/net/tcp_test.go @@ -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) } -- 2.48.1