]> Cypherpunks repositories - gostls13.git/commitdiff
syscall: exclude Go tool test on darwin/arm
authorDavid Crawshaw <crawshaw@golang.org>
Thu, 26 Feb 2015 22:55:11 +0000 (17:55 -0500)
committerDavid Crawshaw <crawshaw@golang.org>
Thu, 26 Feb 2015 23:10:18 +0000 (23:10 +0000)
Change-Id: I44c1911beceaedaa35dad71d8be8a814528dce67
Reviewed-on: https://go-review.googlesource.com/6192
Reviewed-by: Minux Ma <minux@golang.org>
src/syscall/syscall_unix_test.go

index a0afb91fcfc8363a6384493ff994cedf233efcc4..ae8e8d9d11271c18768cc5321d4820fcf003c764 100644 (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()