From 460568b6fd66b756f9bf111e1ce86bbf50334548 Mon Sep 17 00:00:00 2001 From: Hyang-Ah Hana Kim Date: Tue, 20 Oct 2015 17:23:24 -0400 Subject: [PATCH] path/filepath: disable symlink tests on android. Same reason as https://go-review.googlesource.com/#/c/16115/ For golang/go#10807 Change-Id: Id0c404e9feb963f39a111fc317c9787692516ae1 Reviewed-on: https://go-review.googlesource.com/16116 Reviewed-by: Brad Fitzpatrick --- src/path/filepath/match_test.go | 2 +- src/path/filepath/path_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/path/filepath/match_test.go b/src/path/filepath/match_test.go index 20ec5aa2a1..0edbfc70c4 100644 --- a/src/path/filepath/match_test.go +++ b/src/path/filepath/match_test.go @@ -167,7 +167,7 @@ var globSymlinkTests = []struct { func TestGlobSymlink(t *testing.T) { switch runtime.GOOS { - case "nacl", "plan9": + case "android", "nacl", "plan9": t.Skipf("skipping on %s", runtime.GOOS) case "windows": if !supportsSymlinks { diff --git a/src/path/filepath/path_test.go b/src/path/filepath/path_test.go index 153a39829d..1a5993e96e 100644 --- a/src/path/filepath/path_test.go +++ b/src/path/filepath/path_test.go @@ -764,7 +764,7 @@ func simpleJoin(dir, path string) string { func TestEvalSymlinks(t *testing.T) { switch runtime.GOOS { - case "nacl", "plan9": + case "android", "nacl", "plan9": t.Skipf("skipping on %s", runtime.GOOS) }