Skip to content

Commit 386b1a4

Browse files
runtime: treat call from runtime as transient in TestDebugCall
Fixes #32985 Change-Id: I5d504715dcc92d4f4f560ea2e843d9275f938685 Reviewed-on: https://go-review.googlesource.com/c/go/+/207620 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Bryan C. Mills <bcmills@google.com> Reviewed-by: Austin Clements <austin@google.com>
1 parent 94f4686 commit 386b1a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/runtime/export_debug_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ func InjectDebugCall(gp *g, fn, args interface{}, tkill func(tid int) error, ret
7070
return nil, h.err
7171
}
7272
fallthrough
73-
case "retry _Grunnable", "executing on Go runtime stack":
73+
case "retry _Grunnable", "executing on Go runtime stack", "call from within the Go runtime":
7474
// These are transient states. Try to get out of them.
7575
if i < 100 {
7676
usleep(100)

0 commit comments

Comments
 (0)