Skip to content

Commit 4607cf1

Browse files
committed
wait for resolve in request_setFunctionBreakpoints
1 parent 9292797 commit 4607cf1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lldb/packages/Python/lldbsuite/test/tools/lldb-dap/dap_server.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1070,7 +1070,10 @@ def request_setFunctionBreakpoints(self, names, condition=None, hitCondition=Non
10701070
"type": "request",
10711071
"arguments": args_dict,
10721072
}
1073-
return self.send_recv(command_dict)
1073+
response = self.send_recv(command_dict)
1074+
breakpoints = response["body"]["breakpoints"]
1075+
self._update_verified_breakpoints(breakpoints)
1076+
return response
10741077

10751078
def request_dataBreakpointInfo(
10761079
self, variablesReference, name, frameIndex=0, threadId=None

0 commit comments

Comments
 (0)