We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed1cf6a commit 524f820Copy full SHA for 524f820
src/runtime/runtime-gdb_unix_test.go
@@ -70,6 +70,11 @@ func TestGdbCoreSignalBacktrace(t *testing.T) {
70
// to know how to enable/find core files on each OS.
71
t.Skip("Test only supported on Linux")
72
}
73
+ if runtime.GOARCH != "386" && runtime.GOARCH != "amd64" {
74
+ // TODO(go.dev/issue/25218): Other architectures use sigreturn
75
+ // via VDSO, which we somehow don't handle correctly.
76
+ t.Skip("Backtrace through signal handler only works on 386 and amd64")
77
+ }
78
79
checkGdbEnvironment(t)
80
t.Parallel()
0 commit comments