This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from b6e7df3ab Fix the xcode build for r352845, attempt #2 new c7c4c707d Move FileAction, ProcessInfo and ProcessLaunchInfo from Targe [...]
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/{Target => Host}/FileAction.h | 4 ++-- include/lldb/{Target => Host}/ProcessInfo.h | 0 include/lldb/{Target => Host}/ProcessLaunchInfo.h | 4 ++-- include/lldb/Target/Process.h | 4 ++-- include/lldb/Target/Target.h | 2 +- include/lldb/module.modulemap | 3 +++ source/API/SBLaunchInfo.cpp | 2 +- source/Host/CMakeLists.txt | 3 +++ source/{Target => Host/common}/FileAction.cpp | 2 +- source/Host/common/Host.cpp | 4 ++-- source/Host/common/MonitoringProcessLauncher.cpp | 2 +- source/{Target => Host/common}/ProcessInfo.cpp | 2 +- .../{Target => Host/common}/ProcessLaunchInfo.cpp | 4 ++-- source/Host/macosx/objcxx/Host.mm | 2 +- source/Host/posix/ProcessLauncherPosixFork.cpp | 2 +- source/Host/windows/ProcessLauncherWindows.cpp | 2 +- .../PlatformiOSSimulatorCoreSimulatorSupport.mm | 2 +- source/Plugins/Platform/POSIX/PlatformPOSIX.cpp | 3 +-- .../Plugins/Process/Linux/NativeProcessLinux.cpp | 2 +- .../GDBRemoteCommunicationServerCommon.cpp | 2 +- .../GDBRemoteCommunicationServerLLGS.cpp | 2 +- .../GDBRemoteCommunicationServerPlatform.cpp | 2 +- source/Target/CMakeLists.txt | 3 --- unittests/Host/CMakeLists.txt | 3 +++ unittests/Host/FileActionTest.cpp | 20 ++++++++++++++++ unittests/Host/ProcessInfoTest.cpp | 20 ++++++++++++++++ unittests/Host/ProcessLaunchInfoTest.cpp | 28 ++++++++++++++++++++++ unittests/tools/lldb-server/tests/TestClient.cpp | 1 - unittests/tools/lldb-server/tests/TestClient.h | 2 +- 29 files changed, 102 insertions(+), 30 deletions(-) rename include/lldb/{Target => Host}/FileAction.h (94%) rename include/lldb/{Target => Host}/ProcessInfo.h (100%) rename include/lldb/{Target => Host}/ProcessLaunchInfo.h (98%) rename source/{Target => Host/common}/FileAction.cpp (98%) rename source/{Target => Host/common}/ProcessInfo.cpp (98%) rename source/{Target => Host/common}/ProcessLaunchInfo.cpp (99%) create mode 100644 unittests/Host/FileActionTest.cpp create mode 100644 unittests/Host/ProcessInfoTest.cpp create mode 100644 unittests/Host/ProcessLaunchInfoTest.cpp