aboutsummaryrefslogtreecommitdiff
path: root/src/syscall
diff options
context:
space:
mode:
authorDavid Crawshaw <crawshaw@golang.org>2015-02-26 17:55:11 -0500
committerDavid Crawshaw <crawshaw@golang.org>2015-02-26 23:10:18 +0000
commita3c59779ffdc3d8280f7c32a6aa421ba56bad90d (patch)
tree3ce3fafea236b18251a539acdf9735583a5f9896 /src/syscall
parentb015cf70831ca27d98f2847ecf2299b225685d2c (diff)
downloadgo-a3c59779ffdc3d8280f7c32a6aa421ba56bad90d.tar.xz
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>
Diffstat (limited to 'src/syscall')
-rw-r--r--src/syscall/syscall_unix_test.go4
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()