diff options
Diffstat (limited to 'lldb/test/tools/lldb-server/inferior-crash/TestGdbRemoteAbort.py')
| -rw-r--r-- | lldb/test/tools/lldb-server/inferior-crash/TestGdbRemoteAbort.py | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/lldb/test/tools/lldb-server/inferior-crash/TestGdbRemoteAbort.py b/lldb/test/tools/lldb-server/inferior-crash/TestGdbRemoteAbort.py new file mode 100644 index 00000000000..16ca370f300 --- /dev/null +++ b/lldb/test/tools/lldb-server/inferior-crash/TestGdbRemoteAbort.py @@ -0,0 +1,45 @@ +import unittest2 + +# Add the directory above ours to the python library path since we +# will import from there. +import os.path +import sys +sys.path.append(os.path.join(os.path.dirname(__file__), "..")) + +import gdbremote_testcase +import signal +from lldbtest import * + +class TestGdbRemoteAbort(gdbremote_testcase.GdbRemoteTestCaseBase): + mydir = TestBase.compute_mydir(__file__) + + def inferior_abort_received(self): + procs = self.prep_debug_monitor_and_inferior(inferior_args=["abort"]) + self.assertIsNotNone(procs) + + self.test_sequence.add_log_lines([ + "read packet: $vCont;c#a8", + {"direction":"send", "regex":r"^\$T([0-9a-fA-F]{2}).*#[0-9a-fA-F]{2}$", "capture":{ 1:"hex_exit_code"} }, + ], True) + + context = self.expect_gdbremote_sequence() + self.assertIsNotNone(context) + + hex_exit_code = context.get("hex_exit_code") + self.assertIsNotNone(hex_exit_code) + self.assertEquals(int(hex_exit_code, 16), signal.SIGABRT) + + @debugserver_test + @dsym_test + def test_inferior_abort_received_debugserver_dsym(self): + self.init_debugserver_test() + self.buildDsym() + self.inferior_abort_received() + + @llgs_test + @dwarf_test + def test_inferior_abort_received_llgs_dwarf(self): + self.init_llgs_test() + self.buildDwarf() + self.inferior_abort_received() + |

