Commit a3c59779 authored by David Crawshaw's avatar David Crawshaw

syscall: exclude Go tool test on darwin/arm

Change-Id: I44c1911beceaedaa35dad71d8be8a814528dce67
Reviewed-on: https://go-review.googlesource.com/6192Reviewed-by: default avatarMinux Ma <minux@golang.org>
parent b015cf70
......@@ -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()
......
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