summaryrefslogtreecommitdiff
path: root/lldb/test/Shell/Commands/command-expr-diagnostics.test
AgeCommit message (Collapse)Author
2024-11-12[lldb][test] Fix remote Shell tests failures on Windows host (#115716)Vladislav Dzhidzhoev
Since the remote Shell test execution feature was added, these tests should now be disabled on Windows target instead of Windows host. It should fix failures on https://lab.llvm.org/staging/#/builders/197/builds/76.
2024-10-16Revert "[lldb] Fix command-expr-diagnostics.test for Windows (#112109)"Muhammad Omair Javaid
This reverts commit eca3206d29e7ce97dd6336deaa3da96be37f8277. This broke LLDB Linux bot for no apparent reason. I ll post a more suitable fix later. Disabled command-expr-diagnostics.test on windows for now.
2024-10-16[lldb] Fix command-expr-diagnostics.test for Windows (#112109)Muhammad Omair Javaid
This adds a minor change to command-expr-diagnostics.test to make it pass on windows. Clang produces PDB on windows by default which was ignoring main symbol due to optimization. The problem is fixed by adding -gdwarf to commandline, making sure dwarf debug info gets generated on both Windows and Linux.
2024-10-14[lldb] Expose structured command diagnostics via the SBAPI. (#112109)Adrian Prantl
This allows IDEs to render LLDB expression diagnostics to their liking without relying on characterprecise ASCII art from LLDB. It is exposed as a versioned SBStructuredData object, since it is expected that this may need to be tweaked based on actual usage.