From d2be7914660f66a8ea899df88e8d608d209d5c07 Mon Sep 17 00:00:00 2001 From: hengwu0 Date: Thu, 28 Nov 2019 21:12:59 +0800 Subject: [PATCH] test: add reason for skipping TestDisassembleGlobalVars on arm64 (#1778) --- pkg/proc/proc_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/proc/proc_test.go b/pkg/proc/proc_test.go index 184da8ce..9df6990f 100644 --- a/pkg/proc/proc_test.go +++ b/pkg/proc/proc_test.go @@ -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"] -- GitLab