Commit d6d423b9 authored by David Crawshaw's avatar David Crawshaw

runtime: skip fork test on darwin/arm64

Just like darwin/arm.

Change-Id: Ie4998d24b2d891a9f6c8047ec40cd3fdf80622cd
Reviewed-on: https://go-review.googlesource.com/8812Reviewed-by: default avatarMinux Ma <minux@golang.org>
parent c0d48836
...@@ -57,7 +57,7 @@ func TestCgoExternalThreadSIGPROF(t *testing.T) { ...@@ -57,7 +57,7 @@ func TestCgoExternalThreadSIGPROF(t *testing.T) {
case "plan9", "windows": case "plan9", "windows":
t.Skipf("no pthreads on %s", runtime.GOOS) t.Skipf("no pthreads on %s", runtime.GOOS)
case "darwin": case "darwin":
if runtime.GOARCH != "arm" { if runtime.GOARCH != "arm" && runtime.GOARCH != "arm64" {
// static constructor needs external linking, but we don't support // static constructor needs external linking, but we don't support
// external linking on OS X 10.6. // external linking on OS X 10.6.
out, err := exec.Command("uname", "-r").Output() out, err := exec.Command("uname", "-r").Output()
......
...@@ -42,8 +42,9 @@ func executeTest(t *testing.T, templ string, data interface{}, extra ...string) ...@@ -42,8 +42,9 @@ func executeTest(t *testing.T, templ string, data interface{}, extra ...string)
case "android", "nacl": case "android", "nacl":
t.Skipf("skipping on %s", runtime.GOOS) t.Skipf("skipping on %s", runtime.GOOS)
case "darwin": case "darwin":
if runtime.GOARCH == "arm" { switch runtime.GOARCH {
t.Skipf("skipping on %s/%s", runtime.GOOS, runtime.GOARCH) case "arm", "arm64":
t.Skipf("skipping on %s/%s, no fork", runtime.GOOS, runtime.GOARCH)
} }
} }
......
...@@ -99,8 +99,9 @@ func TestRuntimeGogoBytes(t *testing.T) { ...@@ -99,8 +99,9 @@ func TestRuntimeGogoBytes(t *testing.T) {
case "android", "nacl": case "android", "nacl":
t.Skipf("skipping on %s", GOOS) t.Skipf("skipping on %s", GOOS)
case "darwin": case "darwin":
if GOARCH == "arm" { switch GOARCH {
t.Skipf("skipping on %s/%s", GOOS, GOARCH) case "arm", "arm64":
t.Skipf("skipping on %s/%s, no fork", GOOS, GOARCH)
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment