[lldb] Replace TestAbortExitCode with a debugserver specific test
authorRaphael Isemann <teemperor@gmail.com>
Thu, 12 Nov 2020 16:20:11 +0000 (17:20 +0100)
committerRaphael Isemann <teemperor@gmail.com>
Thu, 12 Nov 2020 16:33:21 +0000 (17:33 +0100)
commitd4b08ccb87944ec6c647f02b536a40922ec2dd73
tree32293896cc2da36fe88660745051b60252458e31
parent173b51169b838255aff4d4ff4eb6014b101a9687
[lldb] Replace TestAbortExitCode with a debugserver specific test

When I added TestAbortExitCode I actually planned this to be a generic test for the
exit code functionality on POSIX systems. However due to all the different test setups we
can have I don't think this worked out. Right now the test had to be made so permissive
that 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 test
that checks the patch that motivated the whole exit code testing. There is already
an exit-code test for lldb-server from what I can see and 3) is pretty much untestable
as we don't know anything about the system debugserver.

Reviewed By: kastiglione

Differential Revision: https://reviews.llvm.org/D89305
lldb/test/API/macosx/debugserver-exit-code/Makefile [new file with mode: 0644]
lldb/test/API/macosx/debugserver-exit-code/TestDebugServerExitCode.py [new file with mode: 0644]
lldb/test/API/macosx/debugserver-exit-code/main.c [moved from lldb/test/Shell/Process/Inputs/abort.c with 100% similarity]
lldb/test/Shell/Process/TestAbortExitCode.test [deleted file]