]> Cypherpunks repositories - gostls13.git/commitdiff
Revert "net: mark tests with retry as parallel"
authorBrad Fitzpatrick <bradfitz@golang.org>
Sun, 1 Apr 2018 18:22:56 +0000 (18:22 +0000)
committerBrad Fitzpatrick <bradfitz@golang.org>
Sun, 1 Apr 2018 18:23:34 +0000 (18:23 +0000)
This reverts commit CL 103975 (a9b799a229787).

Reason for revert: adds data race, breaks race builders, and Brad forgot
to run the Trybots.

Change-Id: Id227dad7069560dbb3ea978a1dcd77ce1979034e
Reviewed-on: https://go-review.googlesource.com/104015
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
src/net/lookup_test.go

index 53f050bd7efa013eebafee9b3fc36ca577f36ef4..c2a6477e2e43e19f81a513be804fe0e967562eb9 100644 (file)
@@ -63,7 +63,6 @@ var lookupGoogleSRVTests = []struct {
 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)
        }
@@ -110,7 +109,6 @@ var lookupGmailMXTests = []struct {
 }
 
 func TestLookupGmailMX(t *testing.T) {
-       t.Parallel()
        if testenv.Builder() == "" {
                testenv.MustHaveExternalNetwork(t)
        }
@@ -191,7 +189,6 @@ var lookupGmailTXTTests = []struct {
 }
 
 func TestLookupGmailTXT(t *testing.T) {
-       t.Parallel()
        if testenv.Builder() == "" {
                testenv.MustHaveExternalNetwork(t)
        }
@@ -301,7 +298,6 @@ var lookupCNAMETests = []struct {
 }
 
 func TestLookupCNAME(t *testing.T) {
-       t.Parallel()
        if testenv.Builder() == "" {
                testenv.MustHaveExternalNetwork(t)
        }