This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 4723d80eb Don't try to parse ObjC method if CU isn't ObjC new e33653dd2 Implement GetSharedLibraryInfoAddress
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: .../Plugins/Process/Linux/NativeProcessLinux.cpp | 22 +-- source/Plugins/Process/Linux/NativeProcessLinux.h | 10 +- source/Plugins/Process/POSIX/CMakeLists.txt | 2 + source/Plugins/Process/POSIX/NativeProcessELF.cpp | 110 +++++++++++++++ source/Plugins/Process/POSIX/NativeProcessELF.h | 46 ++++++ unittests/Host/NativeProcessProtocolTest.cpp | 150 ++------------------ unittests/Process/CMakeLists.txt | 1 + unittests/Process/POSIX/CMakeLists.txt | 8 ++ unittests/Process/POSIX/NativeProcessELFTest.cpp | 155 +++++++++++++++++++++ .../TestingSupport/Host/NativeProcessTestUtils.h | 150 ++++++++++++++++++++ 10 files changed, 487 insertions(+), 167 deletions(-) create mode 100644 source/Plugins/Process/POSIX/NativeProcessELF.cpp create mode 100644 source/Plugins/Process/POSIX/NativeProcessELF.h create mode 100644 unittests/Process/POSIX/CMakeLists.txt create mode 100644 unittests/Process/POSIX/NativeProcessELFTest.cpp create mode 100644 unittests/TestingSupport/Host/NativeProcessTestUtils.h