Commit 4ec2fd3e authored by Russ Cox's avatar Russ Cox

cmd/go: disable broken test for code.google.com

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/18974Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
Run-TryBot: Russ Cox <rsc@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
parent 9202e9e1
...@@ -2255,6 +2255,7 @@ func TestGoGetInsecureCustomDomain(t *testing.T) { ...@@ -2255,6 +2255,7 @@ func TestGoGetInsecureCustomDomain(t *testing.T) {
} }
func TestIssue10193(t *testing.T) { func TestIssue10193(t *testing.T) {
t.Skip("depends on code.google.com")
testenv.MustHaveExternalNetwork(t) testenv.MustHaveExternalNetwork(t)
if _, err := exec.LookPath("hg"); err != nil { if _, err := exec.LookPath("hg"); err != nil {
t.Skip("skipping because hg binary not found") t.Skip("skipping because hg binary not found")
......
...@@ -18,14 +18,14 @@ func TestRepoRootForImportPath(t *testing.T) { ...@@ -18,14 +18,14 @@ func TestRepoRootForImportPath(t *testing.T) {
path string path string
want *repoRoot want *repoRoot
}{ }{
{ /*{
"code.google.com/p/go", "code.google.com/p/go",
&repoRoot{ &repoRoot{
vcs: vcsHg, vcs: vcsHg,
repo: "https://code.google.com/p/go", repo: "https://code.google.com/p/go",
}, },
}, },
/*{ {
"code.google.com/r/go", "code.google.com/r/go",
&repoRoot{ &repoRoot{
vcs: vcsHg, vcs: vcsHg,
......
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