when I ran this test, put the breakpoint to fmt.Println this statement
func TestName(t *testing.T) {
fmt.Println("123")
}
it jumped to proc.go every time, how can I solve this problem?
Tried to update delve(dlv), put it to goland custom propertity, but it didn't work
My Go version: 1.22.7 GoLand version: 2024.3.5
when I ran this test, put the breakpoint to fmt.Println this statement
func TestName(t *testing.T) {
fmt.Println("123")
}
it jumped to proc.go every time, how can I solve this problem?
Tried to update delve(dlv), put it to goland custom propertity, but it didn't work
My Go version: 1.22.7 GoLand version: 2024.3.5
Share Improve this question asked 2 days ago FlyingBurgerFlyingBurger 1,4022 gold badges19 silver badges21 bronze badges 2 |1 Answer
Reset to default -1Stepping into the Go SDK's internals after the program finishes is expected in this case. The debugger continues to operate even after your program's code has completed. We are considering a feature to hide these internal debugger steps from the user if the user requests it, so it appears that the debugger stops cleanly after your program finishes. Here is a feature request tracking this improvement: https://youtrack.jetbrains/issue/GO-10534
gopark
function insideproc.go
. If no breakpoint is set, it runs green. To be clear: It never stops at any user set breakpoint. – Tormod Haugene Commented yesterday