Skip to content

Commit ac9d777

Browse files
Bryan C. Millsgopherbot
Bryan C. Mills
authored andcommitted
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 <[email protected]> Auto-Submit: Bryan Mills <[email protected]> Reviewed-by: David Chase <[email protected]> TryBot-Bypass: Bryan Mills <[email protected]>
1 parent 2b92c39 commit ac9d777

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/cmd/go/testdata/script/list_goroot_symlink.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
[short] skip 'copies the cmd/go binary'
88
[!symlink] skip 'tests symlink-specific behavior'
99
[GOOS:darwin] skip 'Lstat on darwin does not conform to POSIX pathname resolution; see #59586'
10+
[GOOS:ios] skip 'Lstat on ios does not conform to POSIX pathname resolution; see #59586'
1011

1112
# Ensure that the relative path to $WORK/lib/goroot/src from $PWD is a different
1213
# number of ".." hops than the relative path to it from $WORK/share/goroot/src.

src/path/filepath/path_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -899,7 +899,7 @@ func TestWalkSymlinkRoot(t *testing.T) {
899899
desc: "double link with slash",
900900
root: linklink + string(filepath.Separator),
901901
want: []string{linklink, filepath.Join(linklink, "foo")},
902-
buggyGOOS: []string{"darwin"}, // https://go.dev/issue/59586
902+
buggyGOOS: []string{"darwin", "ios"}, // https://go.dev/issue/59586
903903
},
904904
} {
905905
tt := tt

0 commit comments

Comments
 (0)