]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/objdump: disable TestDisasm.* on arm64
authorAram Hăvărneanu <aram@mgk.ro>
Sun, 8 Mar 2015 13:29:44 +0000 (14:29 +0100)
committerAram Hăvărneanu <aram@mgk.ro>
Mon, 16 Mar 2015 18:46:52 +0000 (18:46 +0000)
ARM64 doesn't have disassembler yet.

Change-Id: I016fa013b5ff50dc49d38ade42351b79be023d80
Reviewed-on: https://go-review.googlesource.com/7149
Reviewed-by: Minux Ma <minux@golang.org>
Reviewed-by: Russ Cox <rsc@golang.org>
src/cmd/objdump/objdump_test.go

index 63c0063d33b4d3111c2db40ab06d55c3c6ec1cc1..1846272b7df62f468861f249e5869c1cb46462d2 100644 (file)
@@ -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")
 }