diff options
| author | David du Colombier <0intro@gmail.com> | 2018-12-05 20:59:42 +0100 |
|---|---|---|
| committer | Brad Fitzpatrick <bradfitz@golang.org> | 2018-12-05 20:32:39 +0000 |
| commit | 09f541173e6901a5fc86917561a2eb7c43572edf (patch) | |
| tree | 3388bb9052a4e79ff2447c65e05499ed9b6e159c /src/net/timeout_test.go | |
| parent | 8765e89a8ac2f4f2cfb8a4aea21b563168b6b6b6 (diff) | |
| download | go-09f541173e6901a5fc86917561a2eb7c43572edf.tar.xz | |
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 <gobot@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/net/timeout_test.go')
| -rw-r--r-- | src/net/timeout_test.go | 3 |
1 files changed, 3 insertions, 0 deletions
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 |
