aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/net/lookup_test.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/net/lookup_test.go b/src/net/lookup_test.go
index 3a31f56bea..655543c7d2 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)
@@ -631,6 +635,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)
}