Skip to content

Commit aab0280

Browse files
committed
cmd/objdump: reference tracking bug in TestDisasmCode skip message
Issue #12559 was closed and split into #19158 for mips{,le} and #19156 for mips64{,le}. Instead of referencing the individual GOARCH-specific issues in the skip test messages of TestDisasmCode use the tracking bug Change-Id: I6929d25f4ec5aef4f069b7692c4e29106088ce65 Reviewed-on: https://go-review.googlesource.com/c/go/+/209817 Run-TryBot: Tobias Klauser <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]>
1 parent acf3ff2 commit aab0280

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/cmd/objdump/objdump_test.go

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -176,10 +176,8 @@ func TestDisasm(t *testing.T) {
176176

177177
func TestDisasmCode(t *testing.T) {
178178
switch runtime.GOARCH {
179-
case "mips", "mipsle", "mips64", "mips64le":
180-
t.Skipf("skipping on %s, issue 12559", runtime.GOARCH)
181-
case "s390x":
182-
t.Skipf("skipping on %s, issue 15255", runtime.GOARCH)
179+
case "mips", "mipsle", "mips64", "mips64le", "s390x":
180+
t.Skipf("skipping on %s, issue 19160", runtime.GOARCH)
183181
}
184182
testDisasm(t, true)
185183
}

0 commit comments

Comments
 (0)