mirror of
https://github.com/go-delve/delve.git
synced 2025-11-02 21:40:22 +08:00
s/DebuggedProcess/Process/
This commit is contained in:
@ -67,7 +67,7 @@ func TestVariableEvaluation(t *testing.T) {
|
||||
{"NonExistent", "", "", fmt.Errorf("could not find symbol value for NonExistent")},
|
||||
}
|
||||
|
||||
withTestProcess("testvariables", t, func(p *DebuggedProcess, fixture protest.Fixture) {
|
||||
withTestProcess("testvariables", t, func(p *Process, fixture protest.Fixture) {
|
||||
pc, _, _ := p.goSymTable.LineToPC(fixture.Source, 57)
|
||||
|
||||
_, err := p.Break(pc)
|
||||
@ -91,7 +91,7 @@ func TestVariableEvaluation(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestVariableFunctionScoping(t *testing.T) {
|
||||
withTestProcess("testvariables", t, func(p *DebuggedProcess, fixture protest.Fixture) {
|
||||
withTestProcess("testvariables", t, func(p *Process, fixture protest.Fixture) {
|
||||
pc, _, _ := p.goSymTable.LineToPC(fixture.Source, 57)
|
||||
|
||||
_, err := p.Break(pc)
|
||||
@ -183,7 +183,7 @@ func TestLocalVariables(t *testing.T) {
|
||||
{"baz", "bazburzum", "struct string", nil}}},
|
||||
}
|
||||
|
||||
withTestProcess("testvariables", t, func(p *DebuggedProcess, fixture protest.Fixture) {
|
||||
withTestProcess("testvariables", t, func(p *Process, fixture protest.Fixture) {
|
||||
pc, _, _ := p.goSymTable.LineToPC(fixture.Source, 57)
|
||||
|
||||
_, err := p.Break(pc)
|
||||
|
||||
Reference in New Issue
Block a user