summaryrefslogtreecommitdiff
path: root/lldb/test/API/functionalities/json/object-file
AgeCommit message (Collapse)Author
2025-03-07Add complete ObjectFileJSON support for sections. (#129916)Greg Clayton
Sections now support specifying: - user IDs - file offset/size - alignment - flags - bool values for fake, encrypted and thread specific sections
2025-03-04Add subsection and permissions support to ObjectFileJSON. (#129801)Greg Clayton
This patch adds the ability to create subsections in a section and allows permissions to be specified.
2025-03-04[lldb] Fix ObjectFileJSON to section addresses. (#129648)Greg Clayton
ObjectFileJSON sections didn't work, they were set to zero all of the time. Fixed the bug and fixed the test to ensure it was testing real values.
2023-04-17[lldb] Fix TestObjectFileJSON and TestSymbolFileJSONJonas Devlieghere
- Separate the two test and only have TestSymbolFileJSON rely on strip. - Use different file names to make sure LLDB reloads the module. This should address all the post commit review from D148062.