[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] Replace TestAbortExitCode with a debugserver specific testWhen I added TestAbortExitCode I actually planned this to be a generic test for theexit code functionality on POSIX systems. Howeve
[lldb] Replace TestAbortExitCode with a debugserver specific testWhen I added TestAbortExitCode I actually planned this to be a generic test for theexit code functionality on POSIX systems. However due to all the different test setups wecan have I don't think this worked out. Right now the test had to be made so permissivethat it pretty much can't fail.Just to summarize, we would need to support the following situations:1. ToT debugserver (on macOS)2. lldb-server (on other platforms)3. Any old debugserver version when using the system debugserver (on macOS)This patch is removing TestAbortExitCode and adds a ToT debugserver specific testthat checks the patch that motivated the whole exit code testing. There is alreadyan exit-code test for lldb-server from what I can see and 3) is pretty much untestableas we don't know anything about the system debugserver.Reviewed By: kastiglioneDifferential Revision: https://reviews.llvm.org/D89305