Commit 76a2ee3b authored by Aram Hăvărneanu's avatar Aram Hăvărneanu

cmd/objdump: disable TestDisasm.* on arm64

ARM64 doesn't have disassembler yet.

Change-Id: I016fa013b5ff50dc49d38ade42351b79be023d80
Reviewed-on: https://go-review.googlesource.com/7149Reviewed-by: 's avatarMinux Ma <minux@golang.org>
Reviewed-by: 's avatarRuss Cox <rsc@golang.org>
parent a25e3c03
......@@ -108,6 +108,8 @@ func TestDisasm(t *testing.T) {
switch runtime.GOARCH {
case "ppc64", "ppc64le":
t.Skipf("skipping on %s, issue 9039", runtime.GOARCH)
case "arm64":
t.Skipf("skipping on %s, issue 10106", runtime.GOARCH)
}
testDisasm(t)
}
......@@ -120,6 +122,8 @@ func TestDisasmExtld(t *testing.T) {
switch runtime.GOARCH {
case "ppc64", "ppc64le":
t.Skipf("skipping on %s, no support for external linking, issue 9038", runtime.GOARCH)
case "arm64":
t.Skipf("skipping on %s, issue 10106", runtime.GOARCH)
}
testDisasm(t, "-ldflags=-linkmode=external")
}
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