This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from be0b96bc6 [dotest] Remove crashinfo hook new ba7b4e321 Add Utility/Environment class for handling... environments
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/API/SBLaunchInfo.h | 9 +- include/lldb/Host/Host.h | 4 +- include/lldb/Interpreter/Args.h | 39 ++------- include/lldb/Target/Platform.h | 2 +- include/lldb/Target/ProcessInfo.h | 8 +- include/lldb/Target/Target.h | 5 +- include/lldb/Utility/Environment.h | 95 ++++++++++++++++++++++ .../python_api/sblaunchinfo/TestSBLaunchInfo.py | 31 +++++++ source/API/SBLaunchInfo.cpp | 47 +++++++---- source/API/SBPlatform.cpp | 5 +- source/API/SBProcess.cpp | 2 +- source/API/SBTarget.cpp | 7 +- source/Commands/CommandObjectProcess.cpp | 6 +- source/Host/freebsd/Host.cpp | 9 +- source/Host/linux/Host.cpp | 11 +-- source/Host/macosx/Host.mm | 73 +++++++---------- source/Host/netbsd/Host.cpp | 9 +- source/Host/openbsd/Host.cpp | 7 +- source/Host/posix/ProcessLauncherPosixFork.cpp | 19 ++--- source/Host/windows/Host.cpp | 13 ++- source/Interpreter/Args.cpp | 44 ---------- source/Plugins/Platform/MacOSX/PlatformDarwin.cpp | 42 +++------- .../PlatformiOSSimulatorCoreSimulatorSupport.mm | 25 ++---- source/Plugins/Platform/POSIX/PlatformPOSIX.cpp | 8 +- source/Plugins/Platform/POSIX/PlatformPOSIX.h | 2 +- .../Plugins/Platform/Windows/PlatformWindows.cpp | 8 +- source/Plugins/Platform/Windows/PlatformWindows.h | 2 +- .../gdb-server/PlatformRemoteGDBServer.cpp | 11 +-- .../Process/gdb-remote/GDBRemoteCommunication.cpp | 6 +- .../gdb-remote/GDBRemoteCommunicationClient.cpp | 9 ++ .../gdb-remote/GDBRemoteCommunicationClient.h | 1 + .../GDBRemoteCommunicationServerCommon.cpp | 5 +- .../Process/gdb-remote/ProcessGDBRemote.cpp | 11 +-- .../DarwinLog/StructuredDataDarwinLog.cpp | 15 +--- source/Target/Platform.cpp | 5 +- source/Target/Process.cpp | 13 +-- source/Target/ProcessInfo.cpp | 5 +- source/Target/Target.cpp | 63 ++++++-------- source/Utility/CMakeLists.txt | 1 + source/Utility/Environment.cpp | 50 ++++++++++++ tools/lldb-server/lldb-gdbserver.cpp | 5 +- unittests/Host/HostTest.cpp | 6 ++ unittests/Interpreter/TestArgs.cpp | 84 ------------------- unittests/Utility/CMakeLists.txt | 1 + unittests/Utility/EnvironmentTest.cpp | 49 +++++++++++ unittests/tools/lldb-server/tests/TestClient.cpp | 16 +--- 46 files changed, 429 insertions(+), 459 deletions(-) create mode 100644 include/lldb/Utility/Environment.h create mode 100644 packages/Python/lldbsuite/test/python_api/sblaunchinfo/TestSBLa [...] create mode 100644 source/Utility/Environment.cpp create mode 100644 unittests/Utility/EnvironmentTest.cpp