1
0
mirror of https://github.com/golang/go synced 2024-09-30 14:38:33 -06:00

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>
This commit is contained in:
Hyang-Ah Hana Kim 2015-10-20 17:23:24 -04:00
parent 84808a2a90
commit 460568b6fd
2 changed files with 2 additions and 2 deletions

View File

@ -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 {

View File

@ -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)
}