diff options
author | Todd Fiala <todd.fiala@gmail.com> | 2014-05-19 04:57:23 +0000 |
---|---|---|
committer | Todd Fiala <todd.fiala@gmail.com> | 2014-05-19 04:57:23 +0000 |
commit | ff6131a958ad0b5f35896a55e63394972651e62a (patch) | |
tree | 633844da6f9fce84358f928b5cca254161775b3e /lldb/test/tools/lldb-gdbserver/TestLldbGdbServer.py | |
parent | cc8c96c1335af3c23a78cf3dbc3690316d43abe8 (diff) | |
download | bcm5719-llvm-ff6131a958ad0b5f35896a55e63394972651e62a.tar.gz bcm5719-llvm-ff6131a958ad0b5f35896a55e63394972651e62a.zip |
Add support for gdb remote $X stop notification.
debugserver now returns $X09 as the immediate response to
a $k kill process request rather than $W09.
ProcessGDBRemote now properly handles X as indication of
a process exit state.
The @debugserver_test and @lldb_test for $k now properly expects
an X notification (signal-caused exit) after killing a just-attached
inferior that was still in the stopped state.
llvm-svn: 209108
Diffstat (limited to 'lldb/test/tools/lldb-gdbserver/TestLldbGdbServer.py')
-rw-r--r-- | lldb/test/tools/lldb-gdbserver/TestLldbGdbServer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/tools/lldb-gdbserver/TestLldbGdbServer.py b/lldb/test/tools/lldb-gdbserver/TestLldbGdbServer.py index 42fa8a404a1..bbe5e4bcb3f 100644 --- a/lldb/test/tools/lldb-gdbserver/TestLldbGdbServer.py +++ b/lldb/test/tools/lldb-gdbserver/TestLldbGdbServer.py @@ -496,7 +496,7 @@ class LldbGdbServerTestCase(TestBase): self.add_get_pid() self.test_sequence.add_log_lines( ["read packet: $k#6b", - "send packet: $W09#00"], + "send packet: $X09#00"], True) self.expect_gdbremote_sequence() |