From: Brad Fitzpatrick Date: Sun, 1 Mar 2015 17:30:15 +0000 (-0800) Subject: net: disable TestTCPReadWriteAllocs on dragonfly X-Git-Tag: go1.5beta1~1792 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=cf14e0e333c854c9ee4730c7e868ffd8424b95f4;p=gostls13.git net: disable TestTCPReadWriteAllocs on dragonfly Update #8859 Update #10042 Change-Id: Idc7eadb447b73563ce9085e50c2042652442c2d9 Reviewed-on: https://go-review.googlesource.com/6412 Reviewed-by: Minux Ma --- diff --git a/src/net/tcp_test.go b/src/net/tcp_test.go index 84bcd8f18c..36d4445a6e 100644 --- a/src/net/tcp_test.go +++ b/src/net/tcp_test.go @@ -494,12 +494,13 @@ func TestTCPConcurrentAccept(t *testing.T) { func TestTCPReadWriteAllocs(t *testing.T) { switch runtime.GOOS { - case "nacl", "windows", "darwin": + case "nacl", "windows", "darwin", "dragonfly": // 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) }