Commit 2d8748eb authored by David Crawshaw's avatar David Crawshaw

syscall: skip fork test on darwin/arm64

Just like darwin/arm.

Change-Id: Iadc30b7307ae56fd4f8a681d49672bed7ca6966f
Reviewed-on: https://go-review.googlesource.com/8810Reviewed-by: 's avatarMinux Ma <minux@golang.org>
parent bbbbca78
......@@ -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)
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment