aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/pprof/pprof_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/pprof/pprof_test.go')
-rw-r--r--src/cmd/pprof/pprof_test.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/cmd/pprof/pprof_test.go b/src/cmd/pprof/pprof_test.go
index 353781ac04..d6ca0e28da 100644
--- a/src/cmd/pprof/pprof_test.go
+++ b/src/cmd/pprof/pprof_test.go
@@ -75,7 +75,11 @@ func mustHaveDisasm(t *testing.T) {
}
// Skip PIE platforms, pprof can't disassemble PIE.
- if runtime.GOOS == "darwin" && runtime.GOARCH == "arm64" {
+ //
+ // TODO(#58807): factor this condition out into a function in
+ // internal/platform so that it won't get out of sync with cmd/go and
+ // cmd/link.
+ if (runtime.GOOS == "darwin" && runtime.GOARCH == "arm64") || runtime.GOOS == "android" {
t.Skipf("skipping on %s/%s, issue 46639", runtime.GOOS, runtime.GOARCH)
}
}