diff --git a/src/runtime/traceback_system_test.go b/src/runtime/traceback_system_test.go index 6231586e44c..223d78a808e 100644 --- a/src/runtime/traceback_system_test.go +++ b/src/runtime/traceback_system_test.go @@ -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()