[lldb][tests] Automatically call compute_mydir (NFC)Eliminate boilerplate of having each test manually assign to `mydir` by calling`compute_mydir` in lldbtest.py.Differential Revision: https://r
[lldb][tests] Automatically call compute_mydir (NFC)Eliminate boilerplate of having each test manually assign to `mydir` by calling`compute_mydir` in lldbtest.py.Differential Revision: https://reviews.llvm.org/D128077
show more ...
[lldb] Fix TestMacCatalyst.py
[lldb] Remove support for replaying the test suite from a reproducerThis patch removes the infrastructure to replay the test suite from areproducer, as well as the modifications made to the indivi
[lldb] Remove support for replaying the test suite from a reproducerThis patch removes the infrastructure to replay the test suite from areproducer, as well as the modifications made to the individual tests.
[lldb] Use assertIn/NotIn over assertTrue/False (NFC)For improved failure messages, use `assertIn` over `assertTrue`.Differential Revision: https://reviews.llvm.org/D96095
[lldb/test] Catch invalid calls to expect()Add preconditions to `TestBase.expect()` that catch semantically invalid callsthat happen to succeed anyway. This also fixes the broken callsites caught
[lldb/test] Catch invalid calls to expect()Add preconditions to `TestBase.expect()` that catch semantically invalid callsthat happen to succeed anyway. This also fixes the broken callsites caught bythese checks.This prevents the following incorrect calls:1. `self.expect("lldb command", "some substr")`2. `self.expect("lldb command", "assert message", "some substr")`Differential Revision: https://reviews.llvm.org/D88792
Add missing override to Makefile
Fix debugserver's qProcessInfo reporting of maccatalyst binariesThis patch is similar in spirit to https://reviews.llvm.org/D84480,but does the maccatalyst/macosx disambiguation. I also took theo
Fix debugserver's qProcessInfo reporting of maccatalyst binariesThis patch is similar in spirit to https://reviews.llvm.org/D84480,but does the maccatalyst/macosx disambiguation. I also took theopportunity to factor out the gdb-remote packet log scanning used byseveral testcases into lldbutil functions.rdar://problem/66059257Differential Revision: https://reviews.llvm.org/D84576