diff options
| author | Hyang-Ah Hana Kim <hyangah@gmail.com> | 2015-10-20 17:23:24 -0400 |
|---|---|---|
| committer | Hyang-Ah Hana Kim <hyangah@gmail.com> | 2015-10-20 22:18:43 +0000 |
| commit | 460568b6fd66b756f9bf111e1ce86bbf50334548 (patch) | |
| tree | d1a5dcfa28a1acbb2377911c9c5f1ea73a0f77ea /src/path/filepath/path_test.go | |
| parent | 84808a2a90c28270589c05eca3b8d7657e49fe87 (diff) | |
| download | go-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/path_test.go')
| -rw-r--r-- | src/path/filepath/path_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
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) } |
