var backoffDuration = [...]time.Duration{time.Second, 5 * time.Second, 30 * time.Second}
func TestLookupGoogleSRV(t *testing.T) {
+ t.Parallel()
if testenv.Builder() == "" {
testenv.MustHaveExternalNetwork(t)
}
}
func TestLookupGmailMX(t *testing.T) {
+ t.Parallel()
if testenv.Builder() == "" {
testenv.MustHaveExternalNetwork(t)
}
t.Skip("IPv4 is required")
}
- defer dnsWaitGroup.Wait()
-
attempts := 0
for i := 0; i < len(lookupGmailMXTests); i++ {
tt := lookupGmailMXTests[i]
}
func TestLookupGmailTXT(t *testing.T) {
+ t.Parallel()
if testenv.Builder() == "" {
testenv.MustHaveExternalNetwork(t)
}
t.Skip("IPv4 is required")
}
- defer dnsWaitGroup.Wait()
-
attempts := 0
for i := 0; i < len(lookupGmailTXTTests); i++ {
tt := lookupGmailTXTTests[i]