Skip to content

Commit

Permalink
net: skip TestSendfileParts on dragonfly and solaris
Browse files Browse the repository at this point in the history
Skip it like on freebsd until there is proper a fix for golang#25809

Updates golang#25809

Change-Id: Id53c433aee75f2a992ab6a8d58d98fd1f8a6c1c6
Reviewed-on: https://go-review.googlesource.com/117698
Run-TryBot: Tobias Klauser <[email protected]>
TryBot-Result: Gobot Gobot <[email protected]>
Reviewed-by: Alex Brainman <[email protected]>
  • Loading branch information
tklauser authored and tmm1 committed Sep 17, 2018
1 parent cf9404a commit 5bee8a2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/net/sendfile_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ func TestSendfile(t *testing.T) {
}

func TestSendfileParts(t *testing.T) {
if runtime.GOOS == "freebsd" {
switch runtime.GOOS {
case "dragonfly", "freebsd", "solaris":
t.Skipf("skipping on %s (see golang.org/issue/25809 for details)", runtime.GOOS)
}

Expand Down

0 comments on commit 5bee8a2

Please sign in to comment.