From 5267bf075bcd0e4898f5414903c1b2180a852bac Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Mon, 29 Jun 2015 13:58:18 -0400 Subject: [PATCH] cmd/go: disable TestIssue10952 without external network Should fix arm64 build failure. Change-Id: Ib35e4a69a1082e461a1eddf3265544a1d2ff98e5 Reviewed-on: https://go-review.googlesource.com/11710 Reviewed-by: David Crawshaw --- src/cmd/go/go_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/cmd/go/go_test.go b/src/cmd/go/go_test.go index b3cb4e44f2..f8d784545d 100644 --- a/src/cmd/go/go_test.go +++ b/src/cmd/go/go_test.go @@ -984,6 +984,8 @@ func TestImportCommentConflict(t *testing.T) { // cmd/go: custom import path checking should not apply to github.com/xxx/yyy. func TestIssue10952(t *testing.T) { + testenv.MustHaveExternalNetwork(t) + if _, err := exec.LookPath("git"); err != nil { t.Skip("skipping because git binary not found") } -- 2.50.0