We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent feec92c commit 5b45e19Copy full SHA for 5b45e19
src/net/dial_test.go
@@ -751,6 +751,12 @@ func TestDialerKeepAlive(t *testing.T) {
751
func TestDialCancel(t *testing.T) {
752
mustHaveExternalNetwork(t)
753
754
+ if strings.HasPrefix(testenv.Builder(), "darwin-arm64") {
755
+ // The darwin-arm64 machines run in an environment that's not
756
+ // compatible with this test.
757
+ t.Skipf("builder %q gives no route to host for 198.18.0.0", testenv.Builder())
758
+ }
759
+
760
blackholeIPPort := JoinHostPort(slowDst4, "1234")
761
if !supportsIPv4() {
762
blackholeIPPort = JoinHostPort(slowDst6, "1234")
0 commit comments