Skip to content

Commit c67f9cc

Browse files
committed
[release-branch.go1.13] cmd/doc: skip failing TestDotSlashLookup on Windows
This test was fixed by changing cmd/doc behavior in CL 204442. Backporting that non-test code change is unlikely to be appropriate this late in Go 1.13 release cycle. A failing test can cover up other regressions, so skip this known failing test to fix the builder. For #35236. For #36181. Change-Id: I07e795e75d7e37bc96ab68607d5d5cc9254342f8 Reviewed-on: https://go-review.googlesource.com/c/go/+/223780 Run-TryBot: Dmitri Shuralyov <[email protected]> Reviewed-by: Alexander Rakoczy <[email protected]> Reviewed-by: Carlos Amedee <[email protected]>
1 parent 5a31a97 commit c67f9cc

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/cmd/doc/doc_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -920,6 +920,9 @@ func TestDotSlashLookup(t *testing.T) {
920920
t.Skip("scanning file system takes too long")
921921
}
922922
maybeSkip(t)
923+
if runtime.GOOS == "windows" {
924+
t.Skip("known Windows test failure on release-branch.go1.13; fix is in CL 204442 but requires non-test code changes unlikely to be appropriate for backporting this late")
925+
}
923926
where, err := os.Getwd()
924927
if err != nil {
925928
t.Fatal(err)

0 commit comments

Comments
 (0)