1
0
mirror of https://github.com/golang/go synced 2024-11-23 00:40:08 -07:00

runtime: skip failing traceback test on Android

See e.g. https://build.golang.org/log/1e6bd28cf75679c66479025c1a0d9082734cf33e

Change-Id: Ic13bc0a40d04afe693d1de07973e2540dadacb23
Reviewed-on: https://go-review.googlesource.com/c/go/+/563415
Reviewed-by: Than McIntosh <thanm@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
This commit is contained in:
Alan Donovan 2024-02-12 10:34:54 -05:00
parent 9cc0f9cba2
commit 4619121d84

View File

@ -62,6 +62,9 @@ func grandchild() {
// golang.org/x/telemetry/crashmonitor.
func TestTracebackSystem(t *testing.T) {
testenv.MustHaveExec(t)
if runtime.GOOS == "android" {
t.Skip("Can't read source code for this file on Android")
}
// Fork+exec the crashing process.
exe, err := os.Executable()