1
0
mirror of https://github.com/golang/go synced 2024-11-18 01:44:49 -07:00

cmd/objdump: skip TestDisasm* for mips64{,le}

Disassembler for mips64 is not supported yet.

Change-Id: Ie923dd1e37fed47fc395b9d1cd9194e55020bee5
Reviewed-on: https://go-review.googlesource.com/14459
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Yao Zhang 2015-09-10 07:13:28 -04:00 committed by Brad Fitzpatrick
parent 1153737e86
commit b456aac388

View File

@ -105,6 +105,8 @@ func TestDisasm(t *testing.T) {
t.Skipf("skipping on %s, issue 9039", runtime.GOARCH) t.Skipf("skipping on %s, issue 9039", runtime.GOARCH)
case "arm64": case "arm64":
t.Skipf("skipping on %s, issue 10106", runtime.GOARCH) t.Skipf("skipping on %s, issue 10106", runtime.GOARCH)
case "mips64", "mips64le":
t.Skipf("skipping on %s, issue 12559", runtime.GOARCH)
} }
testDisasm(t) testDisasm(t)
} }
@ -119,6 +121,8 @@ func TestDisasmExtld(t *testing.T) {
t.Skipf("skipping on %s, no support for external linking, issue 9038", runtime.GOARCH) t.Skipf("skipping on %s, no support for external linking, issue 9038", runtime.GOARCH)
case "arm64": case "arm64":
t.Skipf("skipping on %s, issue 10106", runtime.GOARCH) t.Skipf("skipping on %s, issue 10106", runtime.GOARCH)
case "mips64", "mips64le":
t.Skipf("skipping on %s, issue 12559 and 12560", runtime.GOARCH)
} }
// TODO(jsing): Reenable once openbsd/arm has external linking support. // TODO(jsing): Reenable once openbsd/arm has external linking support.
if runtime.GOOS == "openbsd" && runtime.GOARCH == "arm" { if runtime.GOOS == "openbsd" && runtime.GOARCH == "arm" {