diff options
| author | David du Colombier <0intro@gmail.com> | 2019-01-13 22:11:44 +0100 |
|---|---|---|
| committer | David du Colombier <0intro@gmail.com> | 2019-01-14 07:58:44 +0000 |
| commit | 4e8aaf6b22557a485cd3af874bf5be2722b07835 (patch) | |
| tree | 2d10843228650307419b3017fcd7d46e6a41563c /src | |
| parent | 7cbfa55b5d17c8deaecff05e4221f828467cfa97 (diff) | |
| download | go-4e8aaf6b22557a485cd3af874bf5be2722b07835.tar.xz | |
net: skip TestLookupGmailTXT on Plan 9
CL 157638 updated TestLookupGmailTXT. However, this
test is failing on Plan 9, because the DNS resolver
(ndb/dns) only returns a single TXT record.
Updates #29722.
Change-Id: I01cd94e6167902361c3f5d615868f6f763a31fb1
Reviewed-on: https://go-review.googlesource.com/c/157737
Run-TryBot: David du Colombier <0intro@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src')
| -rw-r--r-- | src/net/lookup_test.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/net/lookup_test.go b/src/net/lookup_test.go index 6dc5f61728..85bcb2b896 100644 --- a/src/net/lookup_test.go +++ b/src/net/lookup_test.go @@ -207,6 +207,9 @@ var lookupGmailTXTTests = []struct { } func TestLookupGmailTXT(t *testing.T) { + if runtime.GOOS == "plan9" { + t.Skip("skipping on plan9; see https://golang.org/issue/29722") + } t.Parallel() mustHaveExternalNetwork(t) |
