From c814ac44c0571f844718f07aa52afa47e37fb1ed Mon Sep 17 00:00:00 2001 From: "Bryan C. Mills" Date: Thu, 19 Jul 2018 16:59:50 -0400 Subject: cmd/go: fix TestScript/list_test_e on Windows I forgot to run trybots on CL 123758, and the test failed on Windows because I hard-coded a slash-delimited path. Use the tent-in-a-box operator ([/\\]) to make the path platform-agnostic. Change-Id: I9113ab60d21152c11e2ebdf822b58a44b1b38574 Reviewed-on: https://go-review.googlesource.com/125115 Run-TryBot: Bryan C. Mills Reviewed-by: Brad Fitzpatrick --- src/cmd/go/testdata/script/list_test_e.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/go/testdata/script/list_test_e.txt b/src/cmd/go/testdata/script/list_test_e.txt index 3e84de6b07..f1473322c6 100644 --- a/src/cmd/go/testdata/script/list_test_e.txt +++ b/src/cmd/go/testdata/script/list_test_e.txt @@ -1,6 +1,6 @@ # issue 25980: crash in go list -e -test go list -e -test -f '{{.Error}}' p -stdout '^p/d_test.go:2:8: cannot find package "d" in any of:' +stdout '^p[/\\]d_test.go:2:8: cannot find package "d" in any of:' -- p/d.go -- package d -- cgit v1.2.3-54-g00ecf