diff options
Diffstat (limited to 'src/os/path_test.go')
| -rw-r--r-- | src/os/path_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/os/path_test.go b/src/os/path_test.go index 50d2c36f14..f9853810c6 100644 --- a/src/os/path_test.go +++ b/src/os/path_test.go @@ -208,7 +208,8 @@ func TestMkdirAllAtSlash(t *testing.T) { case "android", "plan9", "windows": t.Skipf("skipping on %s", runtime.GOOS) case "darwin": - if runtime.GOARCH == "arm" { + switch runtime.GOARCH { + case "arm", "arm64": t.Skipf("skipping on darwin/%s, mkdir returns EPERM", runtime.GOARCH) } } |
