Skip to content

Commit d278f09

Browse files
committed
cmd/go: skip TestScript/mod_* on Windows
I don't know why it's failing. Filed #26457. Change-Id: I84833293a572c5a1a25135bd01cb88518fc7441e Reviewed-on: https://go-review.googlesource.com/124857 Run-TryBot: Russ Cox <[email protected]> Reviewed-by: Russ Cox <[email protected]>
1 parent eec9a89 commit d278f09

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Diff for: src/cmd/go/script_test.go

+4
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ func TestScript(t *testing.T) {
4242
file := file
4343
name := strings.TrimSuffix(filepath.Base(file), ".txt")
4444
t.Run(name, func(t *testing.T) {
45+
if strings.HasPrefix(name, "mod_") && runtime.GOOS == "windows" {
46+
// Windows is very unhappy about the module proxy.
47+
t.Skip("golang.org/issue/26457")
48+
}
4549
t.Parallel()
4650
ts := &testScript{t: t, name: name, file: file}
4751
ts.setup()

0 commit comments

Comments
 (0)