[Lldb-commits] [lldb] [lldb][lldb-dap] Added support for "WriteMemory" request. (PR #131820)
via lldb-commits
lldb-commits at lists.llvm.org
Tue Mar 18 08:16:34 PDT 2025
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {darker}-->
:warning: Python code formatter, darker found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
darker --check --diff -r 351bcd9fe229121fac58e051f9a83dce2d3066ae...9a6d64373f45921c5b23460b12544869355ddd15 lldb/packages/Python/lldbsuite/test/tools/lldb-dap/dap_server.py lldb/test/API/tools/lldb-dap/memory/TestDAP_memory.py
``````````
</details>
<details>
<summary>
View the diff from darker here.
</summary>
``````````diff
--- packages/Python/lldbsuite/test/tools/lldb-dap/dap_server.py 2025-03-18 15:04:25.000000 +0000
+++ packages/Python/lldbsuite/test/tools/lldb-dap/dap_server.py 2025-03-18 15:15:34.959979 +0000
@@ -723,10 +723,11 @@
"command": "readMemory",
"type": "request",
"arguments": args_dict,
}
return self.send_recv(command_dict)
+
def request_writeMemory(self, memoryReference, offset, data):
args_dict = {
"memoryReference": memoryReference,
"offset": offset,
"data": data,
``````````
</details>
https://github.com/llvm/llvm-project/pull/131820
More information about the lldb-commits
mailing list