This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 06ece98ff Revert a hunk that shouldn't have been included in the last commit. new c5aa39431 Re-commit "Introduce ObjectFileBreakpad"
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/Symbol/ObjectFile.h | 12 + lit/Modules/Breakpad/Inputs/bad-module-id-1.syms | 2 + lit/Modules/Breakpad/Inputs/bad-module-id-2.syms | 2 + lit/Modules/Breakpad/Inputs/bad-module-id-3.syms | 2 + .../Breakpad/Inputs/identification-linux.syms | 6 + .../Breakpad/Inputs/identification-macosx.syms | 6 + .../Breakpad/Inputs/identification-windows.syms | 4 + lit/Modules/Breakpad/breakpad-identification.test | 32 +++ .../breakpoint => Modules/Breakpad}/lit.local.cfg | 0 .../deleted-executable}/Makefile | 0 .../deleted-executable/TestDeletedExecutable.py | 31 +++ .../functionalities/deleted-executable/main.cpp | 9 + source/API/SystemInitializerFull.cpp | 3 + source/Plugins/ObjectFile/Breakpad/CMakeLists.txt | 11 + .../ObjectFile/Breakpad/ObjectFileBreakpad.cpp | 245 +++++++++++++++++++++ .../ObjectFile/Breakpad/ObjectFileBreakpad.h | 109 +++++++++ source/Plugins/ObjectFile/CMakeLists.txt | 3 +- source/Symbol/ObjectFile.cpp | 60 +++++ tools/lldb-test/SystemInitializerTest.cpp | 3 + tools/lldb-test/lldb-test.cpp | 13 ++ 20 files changed, 552 insertions(+), 1 deletion(-) create mode 100644 lit/Modules/Breakpad/Inputs/bad-module-id-1.syms create mode 100644 lit/Modules/Breakpad/Inputs/bad-module-id-2.syms create mode 100644 lit/Modules/Breakpad/Inputs/bad-module-id-3.syms create mode 100644 lit/Modules/Breakpad/Inputs/identification-linux.syms create mode 100644 lit/Modules/Breakpad/Inputs/identification-macosx.syms create mode 100644 lit/Modules/Breakpad/Inputs/identification-windows.syms create mode 100644 lit/Modules/Breakpad/breakpad-identification.test copy lit/{tools/lldb-mi/breakpoint => Modules/Breakpad}/lit.local.cfg (100%) copy packages/Python/lldbsuite/test/{api/check_public_api_headers => functionaliti [...] create mode 100644 packages/Python/lldbsuite/test/functionalities/deleted-executab [...] create mode 100644 packages/Python/lldbsuite/test/functionalities/deleted-executab [...] create mode 100644 source/Plugins/ObjectFile/Breakpad/CMakeLists.txt create mode 100644 source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.cpp create mode 100644 source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.h