Commit 4c1ee3ea authored by David Crawshaw's avatar David Crawshaw

cmd/objdump: skip fork test on darwin/arm64

Just like darwin/arm.

Change-Id: Ibaba67980db6e05aa71568199b2dac2fcaa86fd6
Reviewed-on: https://go-review.googlesource.com/8824Reviewed-by: 's avatarMinux Ma <minux@golang.org>
parent d5bb4380
......@@ -19,8 +19,9 @@ func buildObjdump(t *testing.T) (tmp, exe string) {
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)
}
}
......
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