Skip to content

Commit b72678f

Browse files
committed
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 golang#22857. Change-Id: I33cdc63a3d3de4d1c7f2684934316c44992fb9e2 Reviewed-on: https://go-review.googlesource.com/79695 Run-TryBot: David du Colombier <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]>
1 parent 8a092b7 commit b72678f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/net/lookup_test.go

+3
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,9 @@ func TestLookupGoogleHost(t *testing.T) {
306306
}
307307

308308
func TestLookupLongTXT(t *testing.T) {
309+
if runtime.GOOS == "plan9" {
310+
t.Skip("skipping on plan9; see https://golang.org/issue/22857")
311+
}
309312
if testenv.Builder() == "" {
310313
testenv.MustHaveExternalNetwork(t)
311314
}

0 commit comments

Comments
 (0)