aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/cmd/pprof/pprof_test.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/cmd/pprof/pprof_test.go b/src/cmd/pprof/pprof_test.go
index 9a37b97286..5c7b19d926 100644
--- a/src/cmd/pprof/pprof_test.go
+++ b/src/cmd/pprof/pprof_test.go
@@ -99,6 +99,11 @@ func TestDisasm(t *testing.T) {
mustHaveDisasm(t)
testenv.MustHaveGoBuild(t)
+ if runtime.GOARCH == "arm64" {
+ // Fixed at tip (issue 56574). Skip for Go 1.19 release branch.
+ testenv.SkipFlaky(t, 60637)
+ }
+
tmpdir := t.TempDir()
cpuExe := filepath.Join(tmpdir, "cpu.exe")
cmd := exec.Command(testenv.GoToolPath(t), "build", "-o", cpuExe, "cpu.go")