]> Cypherpunks repositories - gostls13.git/commitdiff
syscall: skip fork test on darwin/arm64
authorDavid Crawshaw <crawshaw@golang.org>
Sat, 11 Apr 2015 22:54:30 +0000 (18:54 -0400)
committerDavid Crawshaw <crawshaw@golang.org>
Sun, 12 Apr 2015 11:52:31 +0000 (11:52 +0000)
Just like darwin/arm.

Change-Id: Iadc30b7307ae56fd4f8a681d49672bed7ca6966f
Reviewed-on: https://go-review.googlesource.com/8810
Reviewed-by: Minux Ma <minux@golang.org>
src/syscall/syscall_unix_test.go

index ae8e8d9d11271c18768cc5321d4820fcf003c764..01fc670aba8b5ba2bd813941d27bb31c194668f7 100644 (file)
@@ -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)
                }
        }