From b72678f37f2087ebf515bf6927bdd102723b28bf Mon Sep 17 00:00:00 2001 From: David du Colombier <0intro@gmail.com> Date: Thu, 23 Nov 2017 12:46:18 +0100 Subject: [PATCH] net: skip TestLookupLongTXT on Plan 9 CL 79555 added TestLookupLongTXT. However, this test is failing on Plan 9, because the DNS resolver (ndb/dns) only returns a single TXT record. Updates #22857. Change-Id: I33cdc63a3d3de4d1c7f2684934316c44992fb9e2 Reviewed-on: https://go-review.googlesource.com/79695 Run-TryBot: David du Colombier <0intro@gmail.com> TryBot-Result: Gobot Gobot Reviewed-by: Ian Lance Taylor --- src/net/lookup_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/net/lookup_test.go b/src/net/lookup_test.go index 4a9f6c664d045..e3bf114a8e2cc 100644 --- a/src/net/lookup_test.go +++ b/src/net/lookup_test.go @@ -306,6 +306,9 @@ 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") + } if testenv.Builder() == "" { testenv.MustHaveExternalNetwork(t) }