diff options
| author | Michael Pratt <mpratt@google.com> | 2024-01-17 13:44:44 -0500 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2024-01-17 19:05:30 +0000 |
| commit | 3c1155ee2d0e2e9bfb907faa61a46e0b4dd509a3 (patch) | |
| tree | 69b67c833f218059dfb47100f0ce7399a0f95ba8 | |
| parent | f2794207adabc3130e79aa6e701782b8aed69e25 (diff) | |
| download | go-3c1155ee2d0e2e9bfb907faa61a46e0b4dd509a3.tar.xz | |
runtime: mark TestGdbCoreCrashThreadBacktrace as flaky
This test exercises the SIGQUIT crash loop and managed to trigger the
race from #65138 at least once.
For #65138.
Fixes #64752.
Change-Id: I11091510aa7ae4f58b1d748e53df2e3e3dbfb323
Reviewed-on: https://go-review.googlesource.com/c/go/+/556356
Auto-Submit: Michael Pratt <mpratt@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Bryan Mills <bcmills@google.com>
Reviewed-by: Cherry Mui <cherryyz@google.com>
| -rw-r--r-- | src/runtime/runtime-gdb_unix_test.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/runtime/runtime-gdb_unix_test.go b/src/runtime/runtime-gdb_unix_test.go index a1f2401a6e..8b602d13d9 100644 --- a/src/runtime/runtime-gdb_unix_test.go +++ b/src/runtime/runtime-gdb_unix_test.go @@ -296,6 +296,8 @@ func TestGdbCoreCrashThreadBacktrace(t *testing.T) { t.Skip("Backtrace through signal handler only works on 386 and amd64") } + testenv.SkipFlaky(t, 65138) + testenv.MustHaveCGO(t) checkGdbEnvironment(t) t.Parallel() |
