aboutsummaryrefslogtreecommitdiff
path: root/src/path/filepath
diff options
context:
space:
mode:
authorHyang-Ah Hana Kim <hyangah@gmail.com>2015-10-20 17:23:24 -0400
committerHyang-Ah Hana Kim <hyangah@gmail.com>2015-10-20 22:18:43 +0000
commit460568b6fd66b756f9bf111e1ce86bbf50334548 (patch)
treed1a5dcfa28a1acbb2377911c9c5f1ea73a0f77ea /src/path/filepath
parent84808a2a90c28270589c05eca3b8d7657e49fe87 (diff)
downloadgo-460568b6fd66b756f9bf111e1ce86bbf50334548.tar.xz
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 <bradfitz@golang.org>
Diffstat (limited to 'src/path/filepath')
-rw-r--r--src/path/filepath/match_test.go2
-rw-r--r--src/path/filepath/path_test.go2
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)
}