Skip to content

Commit 460568b

Browse files
committed
path/filepath: disable symlink tests on android.
Same reason as https://go-review.googlesource.com/#/c/16115/ For #10807 Change-Id: Id0c404e9feb963f39a111fc317c9787692516ae1 Reviewed-on: https://go-review.googlesource.com/16116 Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent 84808a2 commit 460568b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/path/filepath/match_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ var globSymlinkTests = []struct {
167167

168168
func TestGlobSymlink(t *testing.T) {
169169
switch runtime.GOOS {
170-
case "nacl", "plan9":
170+
case "android", "nacl", "plan9":
171171
t.Skipf("skipping on %s", runtime.GOOS)
172172
case "windows":
173173
if !supportsSymlinks {

src/path/filepath/path_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -764,7 +764,7 @@ func simpleJoin(dir, path string) string {
764764

765765
func TestEvalSymlinks(t *testing.T) {
766766
switch runtime.GOOS {
767-
case "nacl", "plan9":
767+
case "android", "nacl", "plan9":
768768
t.Skipf("skipping on %s", runtime.GOOS)
769769
}
770770

0 commit comments

Comments
 (0)