Skip to content

Commit

Permalink
cmd/go: disable broken test for code.google.com
Browse files Browse the repository at this point in the history
For Go 1.7 we can remove all the code.google.com code
(except maybe the shutdown warning).

See #10193.

Change-Id: I4b8182eb66494f0bf373b40ca5da6ae4738342be
Reviewed-on: https://go-review.googlesource.com/18974
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Run-TryBot: Russ Cox <rsc@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
  • Loading branch information
rsc committed Jan 27, 2016
1 parent 9202e9e commit 4ec2fd3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/cmd/go/go_test.go
Expand Up @@ -2255,6 +2255,7 @@ func TestGoGetInsecureCustomDomain(t *testing.T) {
}

func TestIssue10193(t *testing.T) {
t.Skip("depends on code.google.com")
testenv.MustHaveExternalNetwork(t)
if _, err := exec.LookPath("hg"); err != nil {
t.Skip("skipping because hg binary not found")
Expand Down
4 changes: 2 additions & 2 deletions src/cmd/go/vcs_test.go
Expand Up @@ -18,14 +18,14 @@ func TestRepoRootForImportPath(t *testing.T) {
path string
want *repoRoot
}{
{
/*{
"code.google.com/p/go",
&repoRoot{
vcs: vcsHg,
repo: "https://code.google.com/p/go",
},
},
/*{
{
"code.google.com/r/go",
&repoRoot{
vcs: vcsHg,
Expand Down

0 comments on commit 4ec2fd3

Please sign in to comment.