From: Brad Fitzpatrick Date: Fri, 13 Jul 2018 20:56:46 +0000 (+0000) Subject: cmd/go: remove windows Skip in test that wasn't removed X-Git-Tag: go1.11beta2~108 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=5e60479ba4c351182838d2de2d8a8883d6b42c09;p=gostls13.git cmd/go: remove windows Skip in test that wasn't removed Was supposed to be removed from CL 123757 Change-Id: I74405adab58be103f8e4a0c2405567f480a0e622 Reviewed-on: https://go-review.googlesource.com/123895 Run-TryBot: Brad Fitzpatrick TryBot-Result: Gobot Gobot Reviewed-by: Bryan C. Mills --- diff --git a/src/cmd/go/mod_test.go b/src/cmd/go/mod_test.go index 8705478dff..f3dc64cc37 100644 --- a/src/cmd/go/mod_test.go +++ b/src/cmd/go/mod_test.go @@ -12,7 +12,6 @@ import ( "os/exec" "path/filepath" "regexp" - "runtime" "sort" "strings" "testing" @@ -214,10 +213,6 @@ func TestModFindModulePath(t *testing.T) { t.Fatalf("FindModulePath = %q, %v, want %q, nil", path, err, "unexpected.com/z") } - if runtime.GOOS == "windows" { - t.Skipf("windows removeall fails") - } - // Empty dir outside GOPATH tg.must(os.MkdirAll(tg.path("gp1"), 0777)) tg.must(os.MkdirAll(tg.path("x1"), 0777))