Skip to content

Commit

Permalink
runtime: skip another GDB "no such process" case
Browse files Browse the repository at this point in the history
Fixes #58698.
For #50838.

Change-Id: I043c59a57707e64d444cd687f9745bf5313fb7cc
Reviewed-on: https://go-review.googlesource.com/c/go/+/500959
Run-TryBot: Michael Pratt <[email protected]>
Auto-Submit: Michael Pratt <[email protected]>
TryBot-Result: Gopher Robot <[email protected]>
Reviewed-by: Austin Clements <[email protected]>
  • Loading branch information
prattmic authored and gopherbot committed Jun 5, 2023
1 parent eb413f7 commit 1b9c721
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/runtime/runtime-gdb_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,9 @@ func TestGdbBacktrace(t *testing.T) {
case bytes.Contains(got, []byte("internal-error: wait returned unexpected status 0x0")):
// GDB bug: https://sourceware.org/bugzilla/show_bug.cgi?id=28551
testenv.SkipFlaky(t, 43068)
case bytes.Contains(got, []byte("Couldn't get registers: No such process.")), bytes.Contains(got, []byte("Unable to fetch general registers.: No such process.")):
case bytes.Contains(got, []byte("Couldn't get registers: No such process.")),
bytes.Contains(got, []byte("Unable to fetch general registers.: No such process.")),
bytes.Contains(got, []byte("reading register pc (#64): No such process.")):
// GDB bug: https://sourceware.org/bugzilla/show_bug.cgi?id=9086
testenv.SkipFlaky(t, 50838)
case bytes.Contains(got, []byte("waiting for new child: No child processes.")):
Expand Down

0 comments on commit 1b9c721

Please sign in to comment.