We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e357634 commit 06b0a65Copy full SHA for 06b0a65
src/net/dial_test.go
@@ -758,6 +758,12 @@ func TestDialerKeepAlive(t *testing.T) {
758
func TestDialCancel(t *testing.T) {
759
mustHaveExternalNetwork(t)
760
761
+ if strings.HasPrefix(testenv.Builder(), "darwin-arm64") {
762
+ // The darwin-arm64 machines run in an environment that's not
763
+ // compatible with this test.
764
+ t.Skipf("builder %q gives no route to host for 198.18.0.0", testenv.Builder())
765
+ }
766
+
767
blackholeIPPort := JoinHostPort(slowDst4, "1234")
768
if !supportsIPv4() {
769
blackholeIPPort = JoinHostPort(slowDst6, "1234")
0 commit comments