summaryrefslogtreecommitdiff
path: root/lldb/test/Shell/Process/UnsupportedLanguage.test
AgeCommit message (Collapse)Author
2025-09-04[lldb] Mark UnsupportedLanguage.test Unsupported on WindowsAiden Grossman
This is to fix buildbot fallout post #156729 without needing to revert the original patch.
2025-09-03[LLDB] Make internal shell the default for running LLDB lit tests. (#156729)cmtice
This patch updates the lld lit test config to use the internal shell by default. This has some performance advantages (~10-15%) and also produces nicer failure output. It also updates the two LLDB tests to not require shell (so that they run under the internal shell), after first verifying that they run and pass using the internal shell; and it fixes one test that was not passing under the internal shell.
2024-06-18[lldb] Suppress unsupported language warning for assembly (#95871)Jonas Devlieghere
The following warning is technically correct, but pretty much useless, since there aren't any frame variables that we'd expect the debugger to understand. > This version of LLDB has no plugin for the language "assembler". > Inspection of frame variables will be limited. This message is useful in the general case but should be suppressed for the "assembler" case. rdar://92745462
2022-04-14[lldb] Port Process::PrintWarning* to use the new diagnostic eventsJonas Devlieghere
Port the two Process::PrintWarning functions to use the new diagnostic events through Debugger::ReportWarning. I kept the wrapper function in the process, but delegated the work to the Module. Consistent with the current code, the Module ensures the warning is only printed once per module. Differential revision: https://reviews.llvm.org/D123698
2021-05-12Rename human-readable name for DW_LANG_Mips_AssemblerAdrian Prantl
The Mips in DW_LANG_Mips_Assembler is a vendor name not an architecture name and in lack of a proper generic DW_LANG_assembler, some assemblers emit DWARF using this tag. Due to a warning I recently introduced users will now be greeted with This version of LLDB has no plugin for the mipsassem language. Inspection of frame variables will be limited. By renaming this to just "Assembler" this error message will make more sense. Differential Revision: https://reviews.llvm.org/D101406 rdar://77214764
2020-05-22Print a warning when stopped in a frame LLDB has no plugin for.Adrian Prantl
This patchs adds an optional warning that is printed when stopped at a frame that was compiled in a source language that LLDB has no plugin for. The motivational use-case is debugging Swift code on Linux. When the user accidentally invokes the system LLDB that was built without the Swift plugin, it is very much non-obvious why debugging doesnt work. This warning makes it easy to figure out what went wrong. <rdar://problem/56986569>