summaryrefslogtreecommitdiff
path: root/lldb/test/API/functionalities/inline-sourcefile
AgeCommit message (Collapse)Author
2024-02-15[lldb] Fix Python test formatting (NFC)Jonas Devlieghere
2024-01-08[lldb][test] Skip DWARF inline source file test on WindowsDavid Spickett
This was added by 917b404e2ccdcc31d2d64971ad094b80967a240b and fails for unknown reasons.
2024-01-04Revert "XFAIL test with dsymutil"Jonas Devlieghere
This reverts commit c041fa1093c3ad7be040fb362a10ca3900c698a4 as Adrian added support to dsymutil.
2024-01-04XFAIL test with dsymutilAdrian Prantl
2024-01-04Add support for inline DWARF source files. (#75880)Adrian Prantl
LLVM supports DWARF 5 linetable extension to store source files inline in DWARF. This is particularly useful for compiler-generated source code. This implementation tries to materialize them as temporary files lazily, so SBAPI clients don't need to be aware of them. rdar://110926168