Skip to content

Commit 09f5411

Browse files
0introbradfitz
authored andcommitted
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 <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent 8765e89 commit 09f5411

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/net/timeout_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -812,6 +812,9 @@ func (b neverEnding) Read(p []byte) (int, error) {
812812
}
813813

814814
func testVariousDeadlines(t *testing.T) {
815+
if runtime.GOOS == "plan9" {
816+
t.Skip("skipping test on plan9; see golang.org/issue/26945")
817+
}
815818
type result struct {
816819
n int64
817820
err error

0 commit comments

Comments
 (0)