diff --git a/pkg/proc/proc_test.go b/pkg/proc/proc_test.go index dc5ee44f..bf9ae81f 100644 --- a/pkg/proc/proc_test.go +++ b/pkg/proc/proc_test.go @@ -4306,8 +4306,8 @@ func TestCallConcurrent(t *testing.T) { withTestProcess("teststepconcurrent", t, func(p proc.Process, fixture protest.Fixture) { bp := setFileBreakpoint(p, t, fixture, 24) assertNoError(proc.Continue(p), t, "Continue()") - //_, err := p.ClearBreakpoint(bp.Addr) - //assertNoError(err, t, "ClearBreakpoint() returned an error") + _, err := p.ClearBreakpoint(bp.Addr) + assertNoError(err, t, "ClearBreakpoint() returned an error") gid1 := p.SelectedGoroutine().ID t.Logf("starting injection in %d / %d", p.SelectedGoroutine().ID, p.CurrentThread().ThreadID()) @@ -4320,9 +4320,6 @@ func TestCallConcurrent(t *testing.T) { return } - _, err := p.ClearBreakpoint(bp.Addr) - assertNoError(err, t, "ClearBreakpoint() returned an error") - for { returned = testCallConcurrentCheckReturns(p, t, gid1) if returned {