[lldb] Use assertState in even more tests (NFC)Followup to D127355 and D127378, converting more instances ofassertEqual to assertState.
[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] Specify LLVM target requirements in TestLaunchProcessPosixSpawn
[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] Stop unsetting LLDB_DEBUGSERVER_PATH from TestLaunchProcessPosixSpawnWe no longer need this after Pavel's change to automatically find debugservers to test. (3ca7b2d)
[lldb] Disable TestLaunchProcessPosixSpawn.py with reproducers
[lldb] Honor the CPU type & subtype when launching on macOSHonor the CPU type (and subtype) when launching the inferior on macOS.Part of this functionality was thought to be no longer needed and
[lldb] Honor the CPU type & subtype when launching on macOSHonor the CPU type (and subtype) when launching the inferior on macOS.Part of this functionality was thought to be no longer needed andremoved in 85bd4369610fe60397455c8e0914a09288285e84, however it's stillneeded, for example to launch binaries under Rosetta 2 on Apple Silicon.This patch will use posix_spawnattr_setarchpref_np if available andfallback to posix_spawnattr_setbinpref_np if not.Differential revision: https://reviews.llvm.org/D95922