diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/syscall/syscall_unix_test.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/syscall/syscall_unix_test.go b/src/syscall/syscall_unix_test.go index a0afb91fcf..ae8e8d9d11 100644 --- a/src/syscall/syscall_unix_test.go +++ b/src/syscall/syscall_unix_test.go @@ -92,6 +92,10 @@ func TestPassFD(t *testing.T) { case "solaris": // TODO(aram): Figure out why ReadMsgUnix is returning empty message. t.Skip("skipping test on solaris, see issue 7402") + case "darwin": + if runtime.GOARCH == "arm" { + t.Skipf("skipping test on %d/%s, no fork", runtime.GOOS, runtime.GOARCH) + } } if os.Getenv("GO_WANT_HELPER_PROCESS") == "1" { passFDChild() |
