From: Brad Fitzpatrick Date: Thu, 16 Aug 2018 16:54:11 +0000 (-0700) Subject: cmd/go: disable TestAccidentalGitCheckout for now X-Git-Tag: go1.11rc2~8^2~24 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=dea36a6f751783c3c511e2eb0e1de3696daec1f7;p=gostls13.git cmd/go: disable TestAccidentalGitCheckout for now It seems it might not have ever worked. Updates #22983 Change-Id: Icc022539aa2555486a65900abf97dfa30f92a1ea Reviewed-on: https://go-review.googlesource.com/129615 Run-TryBot: Brad Fitzpatrick TryBot-Result: Gobot Gobot Reviewed-by: Andrew Bonventre --- diff --git a/src/cmd/go/go_test.go b/src/cmd/go/go_test.go index debe4867e6..a7be617af9 100644 --- a/src/cmd/go/go_test.go +++ b/src/cmd/go/go_test.go @@ -1293,6 +1293,7 @@ func TestGetGitDefaultBranch(t *testing.T) { func TestAccidentalGitCheckout(t *testing.T) { testenv.MustHaveExternalNetwork(t) + testenv.SkipFlaky(t, 22983) // this test might not have ever worked; see issue. if _, err := exec.LookPath("git"); err != nil { t.Skip("skipping because git binary not found") }