]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/nm: skip fork test on darwin/arm64
authorDavid Crawshaw <crawshaw@golang.org>
Sat, 11 Apr 2015 23:38:45 +0000 (19:38 -0400)
committerDavid Crawshaw <crawshaw@golang.org>
Sun, 12 Apr 2015 11:52:22 +0000 (11:52 +0000)
Just like darwin/arm.

Change-Id: Iabb6282f18548da43117ee60f7ad6e272502f09d
Reviewed-on: https://go-review.googlesource.com/8825
Reviewed-by: Minux Ma <minux@golang.org>
src/cmd/nm/nm_test.go

index 308192158487e6c2a1f9de485061293c77e8e29f..155d103ee7fd1201ba7b4cd73418c788e680f6c0 100644 (file)
@@ -59,8 +59,9 @@ func TestNM(t *testing.T) {
        case "android", "nacl":
                t.Skipf("skipping on %s", runtime.GOOS)
        case "darwin":
-               if runtime.GOARCH == "arm" {
-                       t.Skipf("skipping on %s/%s", runtime.GOOS, runtime.GOARCH)
+               switch runtime.GOARCH {
+               case "arm", "arm64":
+                       t.Skipf("skipping on %s/%s, cannot fork", runtime.GOOS, runtime.GOARCH)
                }
        }