1
0
mirror of https://github.com/golang/go synced 2024-10-01 03:38:32 -06:00

syscall: exclude Go tool test on darwin/arm

Change-Id: I44c1911beceaedaa35dad71d8be8a814528dce67
Reviewed-on: https://go-review.googlesource.com/6192
Reviewed-by: Minux Ma <minux@golang.org>
This commit is contained in:
David Crawshaw 2015-02-26 17:55:11 -05:00
parent b015cf7083
commit a3c59779ff

View File

@ -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()