aboutsummaryrefslogtreecommitdiff
path: root/src/path
diff options
context:
space:
mode:
authorBryan C. Mills <bcmills@google.com>2023-04-14 15:59:40 +0000
committerGopher Robot <gobot@golang.org>2023-04-14 17:01:07 +0000
commitac9d777caf06364524ce9c67203a14a899f71a57 (patch)
treedb3d138c67260966577dad261417a664cd619f4d /src/path
parent2b92c39fe08101ed8c9f032d577df4cc882d08d7 (diff)
downloadgo-ac9d777caf06364524ce9c67203a14a899f71a57.tar.gz
go-ac9d777caf06364524ce9c67203a14a899f71a57.zip
path/filepath,cmd/go: skip tests involving double-symlinks on ios
For #59586. Change-Id: I092f7a4abce1074b8eef64a3ecf9fc187914709b Reviewed-on: https://go-review.googlesource.com/c/go/+/484755 Run-TryBot: Bryan Mills <bcmills@google.com> Auto-Submit: Bryan Mills <bcmills@google.com> Reviewed-by: David Chase <drchase@google.com> TryBot-Bypass: Bryan Mills <bcmills@google.com>
Diffstat (limited to 'src/path')
-rw-r--r--src/path/filepath/path_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/path/filepath/path_test.go b/src/path/filepath/path_test.go
index aed8cc8383..0c73e288e5 100644
--- a/src/path/filepath/path_test.go
+++ b/src/path/filepath/path_test.go
@@ -899,7 +899,7 @@ func TestWalkSymlinkRoot(t *testing.T) {
desc: "double link with slash",
root: linklink + string(filepath.Separator),
want: []string{linklink, filepath.Join(linklink, "foo")},
- buggyGOOS: []string{"darwin"}, // https://go.dev/issue/59586
+ buggyGOOS: []string{"darwin", "ios"}, // https://go.dev/issue/59586
},
} {
tt := tt