From 386b1a4280d4a32cd8b69a92ba91b6d98832b721 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Mon, 18 Nov 2019 11:13:20 -0800 Subject: [PATCH] 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 TryBot-Result: Gobot Gobot Reviewed-by: Bryan C. Mills Reviewed-by: Austin Clements --- src/runtime/export_debug_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/export_debug_test.go b/src/runtime/export_debug_test.go index 7ae12f6da3..97bb7bd62a 100644 --- a/src/runtime/export_debug_test.go +++ b/src/runtime/export_debug_test.go @@ -70,7 +70,7 @@ func InjectDebugCall(gp *g, fn, args interface{}, tkill func(tid int) error, ret return nil, h.err } fallthrough - case "retry _Grunnable", "executing on Go runtime stack": + case "retry _Grunnable", "executing on Go runtime stack", "call from within the Go runtime": // These are transient states. Try to get out of them. if i < 100 { usleep(100) -- 2.50.0