From: David Crawshaw Date: Sat, 11 Apr 2015 22:54:30 +0000 (-0400) Subject: syscall: skip fork test on darwin/arm64 X-Git-Tag: go1.5beta1~1171 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=2d8748eb8b21ee4ee3ae7ca306cf636b76d50e34;p=gostls13.git syscall: skip fork test on darwin/arm64 Just like darwin/arm. Change-Id: Iadc30b7307ae56fd4f8a681d49672bed7ca6966f Reviewed-on: https://go-review.googlesource.com/8810 Reviewed-by: Minux Ma --- diff --git a/src/syscall/syscall_unix_test.go b/src/syscall/syscall_unix_test.go index ae8e8d9d11..01fc670aba 100644 --- a/src/syscall/syscall_unix_test.go +++ b/src/syscall/syscall_unix_test.go @@ -93,7 +93,8 @@ func TestPassFD(t *testing.T) { // 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" { + switch runtime.GOARCH { + case "arm", "arm64": t.Skipf("skipping test on %d/%s, no fork", runtime.GOOS, runtime.GOARCH) } }