This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 91b37e373 [lldb] [test] Mark failing tests XFAIL on NetBSD new 0cbed282d Refactor user/group name resolving code
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/Host/HostInfoBase.h | 4 +- include/lldb/Host/posix/HostInfoPosix.h | 3 +- include/lldb/Target/Platform.h | 69 +----------------- include/lldb/Target/Process.h | 8 +-- include/lldb/Target/RemoteAwarePlatform.h | 3 +- include/lldb/Utility/UserIDResolver.h | 56 +++++++++++++++ source/Commands/CommandObjectPlatform.cpp | 14 ++-- source/Host/posix/HostInfoPosix.cpp | 61 ++++++++-------- source/Plugins/Platform/Kalimba/PlatformKalimba.h | 4 ++ .../gdb-server/PlatformRemoteGDBServer.cpp | 25 +++---- .../Platform/gdb-server/PlatformRemoteGDBServer.h | 9 +-- .../GDBRemoteCommunicationServerCommon.cpp | 12 ++-- source/Target/Platform.cpp | 36 ++-------- source/Target/Process.cpp | 82 +++++++++------------- source/Target/RemoteAwarePlatform.cpp | 26 ++----- source/Utility/CMakeLists.txt | 1 + source/Utility/UserIDResolver.cpp | 44 ++++++++++++ unittests/Target/CMakeLists.txt | 1 + unittests/Target/ProcessInstanceInfoTest.cpp | 75 ++++++++++++++++++++ unittests/Utility/CMakeLists.txt | 1 + unittests/Utility/UserIDResolverTest.cpp | 47 +++++++++++++ 21 files changed, 338 insertions(+), 243 deletions(-) create mode 100644 include/lldb/Utility/UserIDResolver.h create mode 100644 source/Utility/UserIDResolver.cpp create mode 100644 unittests/Target/ProcessInstanceInfoTest.cpp create mode 100644 unittests/Utility/UserIDResolverTest.cpp