Commit cf14e0e3 authored by Brad Fitzpatrick's avatar Brad Fitzpatrick

net: disable TestTCPReadWriteAllocs on dragonfly

Update #8859
Update #10042

Change-Id: Idc7eadb447b73563ce9085e50c2042652442c2d9
Reviewed-on: https://go-review.googlesource.com/6412Reviewed-by: default avatarMinux Ma <minux@golang.org>
parent 5432b4d3
......@@ -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)
}
......
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