diff options
| author | Michael Anthony Knyszek <mknyszek@google.com> | 2022-11-11 17:26:45 +0000 |
|---|---|---|
| committer | Michael Knyszek <mknyszek@google.com> | 2022-11-11 18:34:30 +0000 |
| commit | 97765249082b6835c77517a4e63bb38cfd6db97b (patch) | |
| tree | 2b4f9f1b0b091f01a30a0a643cb3d4605c5c8c46 /src | |
| parent | bed2b7cf41471e1521af5a83ae28bd643eb3e038 (diff) | |
| download | go-97765249082b6835c77517a4e63bb38cfd6db97b.tar.xz | |
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>
Diffstat (limited to 'src')
| -rw-r--r-- | src/net/lookup_test.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/net/lookup_test.go b/src/net/lookup_test.go index ccc25c0bd9..6268f3f6fc 100644 --- a/src/net/lookup_test.go +++ b/src/net/lookup_test.go @@ -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) } |
