From: David du Colombier <0intro@gmail.com> Date: Wed, 5 Dec 2018 19:59:42 +0000 (+0100) Subject: net: skip TestVariousDeadlines on Plan 9 X-Git-Tag: go1.12beta1~161 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=09f541173e6901a5fc86917561a2eb7c43572edf;p=gostls13.git net: skip TestVariousDeadlines on Plan 9 This test is regularly failing on the plan9/386 builder running on GCE, but we haven't figured out the issue yet. Updates #26945. Change-Id: I8cbe0df43c0757e7bc68e370311f4a28cd7b049b Reviewed-on: https://go-review.googlesource.com/c/152721 Run-TryBot: David du Colombier <0intro@gmail.com> TryBot-Result: Gobot Gobot Reviewed-by: Brad Fitzpatrick --- diff --git a/src/net/timeout_test.go b/src/net/timeout_test.go index 7c7d0c8993..9599fa1d3e 100644 --- a/src/net/timeout_test.go +++ b/src/net/timeout_test.go @@ -812,6 +812,9 @@ func (b neverEnding) Read(p []byte) (int, error) { } func testVariousDeadlines(t *testing.T) { + if runtime.GOOS == "plan9" { + t.Skip("skipping test on plan9; see golang.org/issue/26945") + } type result struct { n int64 err error