mirror of
https://github.com/golang/go
synced 2024-11-18 08:14:41 -07: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:
parent
84808a2a90
commit
460568b6fd
@ -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 {
|
||||
|
@ -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)
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user