mirror of https://github.com/golang/go.git
net: disable TestLookupDotsWithRemoteSource and TestLookupGoogleSRV
These tests fail consistently due to a DNS change causing widespread trybot outages. Fixes #56707. Change-Id: Iebdf91254a922a48880021198f0f12f6bc16b6e7 Reviewed-on: https://go-review.googlesource.com/c/go/+/449640 Reviewed-by: Carlos Amedee <carlos@golang.org> Reviewed-by: Bryan Mills <bcmills@google.com> Run-TryBot: Michael Knyszek <mknyszek@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Damien Neil <dneil@google.com>
This commit is contained in:
parent
bed2b7cf41
commit
9776524908
|
|
@ -71,6 +71,10 @@ var lookupGoogleSRVTests = []struct {
|
|||
var backoffDuration = [...]time.Duration{time.Second, 5 * time.Second, 30 * time.Second}
|
||||
|
||||
func TestLookupGoogleSRV(t *testing.T) {
|
||||
// TODO(mknyszek): Figure out next steps for this test. This is just
|
||||
// a quick fix.
|
||||
t.Skip("fails consistently due to an upstream DNS change; see #56707.")
|
||||
|
||||
t.Parallel()
|
||||
mustHaveExternalNetwork(t)
|
||||
|
||||
|
|
@ -633,6 +637,10 @@ func TestLookupDotsWithLocalSource(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestLookupDotsWithRemoteSource(t *testing.T) {
|
||||
// TODO(mknyszek): Figure out next steps for this test. This is just
|
||||
// a quick fix.
|
||||
t.Skip("fails consistently due to an upstream DNS change; see #56707.")
|
||||
|
||||
if runtime.GOOS == "darwin" || runtime.GOOS == "ios" {
|
||||
testenv.SkipFlaky(t, 27992)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue