Commit d21655b8 authored by Elias Naur's avatar Elias Naur

Revert "net: skip socket hungry test on iOS"

This reverts commit 3027932a.

Reason for revert: It didn't work well enough; a replacement CL that skips external net tests altogether on iOS is coming.

Change-Id: Ib2c5656cee92bcae744f9c99fbcb9f9f2baa0694
Reviewed-on: https://go-review.googlesource.com/113555
Run-TryBot: Elias Naur <elias.naur@gmail.com>
Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
parent 750a42f4
...@@ -87,11 +87,6 @@ func TestTCPSpuriousConnSetupCompletionWithCancel(t *testing.T) { ...@@ -87,11 +87,6 @@ func TestTCPSpuriousConnSetupCompletionWithCancel(t *testing.T) {
if testenv.Builder() == "" { if testenv.Builder() == "" {
testenv.MustHaveExternalNetwork(t) testenv.MustHaveExternalNetwork(t)
} }
if runtime.GOOS == "darwin" && (runtime.GOARCH == "arm" || runtime.GOARCH == "arm64") {
t.Skip("the iOS limit of 250 open file descriptors is too low")
}
defer dnsWaitGroup.Wait() defer dnsWaitGroup.Wait()
t.Parallel() t.Parallel()
const tries = 10000 const tries = 10000
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment