test: add reason for skipping TestDisassembleGlobalVars on arm64 (#1778)

This commit is contained in:
hengwu0
2019-11-28 21:12:59 +08:00
committed by Derek Parker
parent 7de5369508
commit d2be791466

View File

@ -3595,7 +3595,7 @@ func TestIssue1145(t *testing.T) {
func TestDisassembleGlobalVars(t *testing.T) {
if runtime.GOARCH == "arm64" {
t.Skip("test is not valid on ARM64")
t.Skip("On ARM64 symLookup can't look up variables due to how they are loaded, see issue #1778")
}
withTestProcess("teststepconcurrent", t, func(p proc.Process, fixture protest.Fixture) {
mainfn := p.BinInfo().LookupFunc["main.main"]