This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from a71eb312d Add a suggestion to convert dotest tests to use run_to_source [...] new c35d7f78e Re-land: [lldb] Use vFlash commands when writing to target's [...]
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/lldb/Core/Module.h | 14 -- include/lldb/Host/XML.h | 3 + include/lldb/Symbol/ObjectFile.h | 7 +- include/lldb/Target/MemoryRegionInfo.h | 12 +- include/lldb/Target/Process.h | 3 + .../gdb_remote_client/TestGDBRemoteLoad.py | 61 ++++++++ .../gdb_remote_client/gdbclientutils.py | 4 +- source/Commands/CommandObjectTarget.cpp | 26 ++- source/Core/Module.cpp | 4 - source/Host/common/XML.cpp | 12 ++ source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp | 35 +++++ source/Plugins/ObjectFile/ELF/ObjectFileELF.h | 7 + .../gdb-remote/GDBRemoteCommunicationClient.cpp | 149 +++++++++++++++++- .../gdb-remote/GDBRemoteCommunicationClient.h | 11 ++ .../Process/gdb-remote/ProcessGDBRemote.cpp | 174 ++++++++++++++++++++- .../Plugins/Process/gdb-remote/ProcessGDBRemote.h | 14 ++ source/Symbol/ObjectFile.cpp | 49 +++--- source/Target/Process.cpp | 11 ++ 18 files changed, 534 insertions(+), 62 deletions(-) create mode 100644 packages/Python/lldbsuite/test/functionalities/gdb_remote_clien [...]