summaryrefslogtreecommitdiff
path: root/lldb/test/Shell/Settings/TestFrameFormatFunctionFormattedArgumentsObjC.test
AgeCommit message (Collapse)Author
2025-04-26[lldb][test] Make sure we compile FrameFormat tests with DWARFMichael Buch
These don't make sense for PDB on Windows
2025-04-26[lldb][test] Skip Objective-C FrameFormat tests on WindowsMichael Buch
This were failing on Windows CI with errors like: ``` 22: (lldb) bt 23: * thread #1, stop reason = breakpoint 1.1 24: frame #0: 0x00007ff7c5e41000 TestFrameFormatFunctionFormattedArgumentsObjC.test.tmp.objc.out`func at main.m:2 25: frame #1: 0x00007ff7c5e4101c TestFrameFormatFunctionFormattedArgumentsObjC.test.tmp.objc.out`bar + 12 at main.m:3 26: frame #2: 0x00007ff7c5e4103c TestFrameFormatFunctionFormattedArgumentsObjC.test.tmp.objc.out`main + 16 at main.m:5 27: custom-frame '()' !~~~~~~~~~~~ error: no match expected 28: custom-frame '(__formal=<unavailable>)' ```
2025-04-25[lldb][Format] Introduce new frame-format variables for function parts (#131836)Michael Buch
Adds new frame-format variables and implements them in the CPlusPlusLanguage plugin. We use the `DemangledNameInfo` type to retrieve the necessary part of the demangled name. https://github.com/llvm/llvm-project/pull/131836