aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/export_debug_test.go
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2019-11-18 11:13:20 -0800
committerIan Lance Taylor <iant@golang.org>2019-12-03 04:15:58 +0000
commit386b1a4280d4a32cd8b69a92ba91b6d98832b721 (patch)
tree7fcba540fba8ab768f0a77e157a5a77c88573793 /src/runtime/export_debug_test.go
parent94f4686a77d1d708f240eac388fb5c5b83e2c15f (diff)
downloadgo-386b1a4280d4a32cd8b69a92ba91b6d98832b721.tar.xz
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>
Diffstat (limited to 'src/runtime/export_debug_test.go')
-rw-r--r--src/runtime/export_debug_test.go2
1 files changed, 1 insertions, 1 deletions
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)