From: Tobias Klauser Date: Mon, 11 Jun 2018 07:40:45 +0000 (+0200) Subject: net: skip TestSendfileParts on dragonfly and solaris X-Git-Tag: go1.11beta1~164 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=40fc4bbfb86ea82ecb16794cd093a36a87d38197;p=gostls13.git net: skip TestSendfileParts on dragonfly and solaris Skip it like on freebsd until there is proper a fix for #25809 Updates #25809 Change-Id: Id53c433aee75f2a992ab6a8d58d98fd1f8a6c1c6 Reviewed-on: https://go-review.googlesource.com/117698 Run-TryBot: Tobias Klauser TryBot-Result: Gobot Gobot Reviewed-by: Alex Brainman --- diff --git a/src/net/sendfile_test.go b/src/net/sendfile_test.go index 3418d7f243..acf1cd9955 100644 --- a/src/net/sendfile_test.go +++ b/src/net/sendfile_test.go @@ -94,7 +94,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) }