This adds support for running the lldb-server test suite (currently consisting
of only one test) against the debugserver. Currently, the choice which binary
to test is based on the host system. This will need to be replaced by something
more elaborate if/when lldb-server starts supporting debugging on darwin.
I need to make a couple of tweaks to the test client to work with debugserver:
- debugserver has different command-line arguments - launching code adjusted to handle that
- debugserver sends duplicate "medata" fields in the stop reply packet - adjusted stop-reply parsing code to handle that
- debugserver replies to the k packet instead of just dropping the connection - stopping code adjusted, although we should probably consider aligning the behavior of the two stubs in this case
Instead of making this ifdef'd can you just check to see if LLDB_SERVER is debugserver or lldb-server?
One of the items on my todo list is to get rid of all the places where #ifdef __APPLE__ equates to using debugserver so that we can start evaluating making lldb-server work on Darwin.