diff options
| author | Brad Fitzpatrick <bradfitz@golang.org> | 2018-02-27 17:23:14 +0000 |
|---|---|---|
| committer | Brad Fitzpatrick <bradfitz@golang.org> | 2018-03-02 22:05:44 +0000 |
| commit | dcedcaa5fb15748cc2e5cb9461fc6b4f4fc942cb (patch) | |
| tree | 4e86f39d281669731472de90a4ba314d85fb37eb /src | |
| parent | 2fd1b523952727b91e5eca76ff1f8b8af8746f7a (diff) | |
| download | go-dcedcaa5fb15748cc2e5cb9461fc6b4f4fc942cb.tar.xz | |
net: skip flaky TestLookupLongTXT for now
Flaky tests failing trybots help nobody.
Updates #22857
Change-Id: I87bc018651ab4fe02560a6d24c08a1d7ccd8ba37
Reviewed-on: https://go-review.googlesource.com/97416
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src')
| -rw-r--r-- | src/net/lookup_test.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/net/lookup_test.go b/src/net/lookup_test.go index d0fc8c345d..f9f79e6285 100644 --- a/src/net/lookup_test.go +++ b/src/net/lookup_test.go @@ -320,9 +320,7 @@ func TestLookupGoogleHost(t *testing.T) { } func TestLookupLongTXT(t *testing.T) { - if runtime.GOOS == "plan9" { - t.Skip("skipping on plan9; see https://golang.org/issue/22857") - } + testenv.SkipFlaky(t, 22857) if testenv.Builder() == "" { testenv.MustHaveExternalNetwork(t) } |
