Summary: This patch fixes the following bug: https://llvm.org/bugs/show_bug.cgi?id=23181 For some reason some lldb-server tests should be kicked using SIGHUP and SIGINT before termination, otherwise it will leave a zombie process. I think the reason is that the lldb-server will terminate a slave process if it gets the SIGHUP/SIGINT and if so it should be fixed in lldb-server. The solution is to terminate process like it does the pexpect (including the delayafterterminate interval). Also this patch reverts the following commits: * r234549 - Skip lldb-server tests according to bug 23181 * r234765 - Skip a few tests on OS X according to the bug 23181 * r234803 - Skip the TestGdbRemoteRegisterState.test_grp_register_save_restore_works_no_suffix_debugserver_dsym test on OS X according to the bug 23181 Test Plan: ``` $ ps | grep Z | grep a.out | wc -l 447 $ ./dosep.py --options "-v --executable $INSTALLDIR/bin/lldb" [...] $ ps | grep Z | grep a.out | wc -l 447 ``` Reviewers: jasonmolenda, clayborg, tberghammer Reviewed By: clayborg Subscribers: lldb-commits, dawn, tberghammer, clayborg, jasonmolenda Differential Revision: http://reviews.llvm.org/D9019 llvm-svn: 235008
126 lines
3.8 KiB
Python
126 lines
3.8 KiB
Python
import unittest2
|
|
|
|
import gdbremote_testcase
|
|
from lldbtest import *
|
|
|
|
class TestGdbRemote_vCont(gdbremote_testcase.GdbRemoteTestCaseBase):
|
|
|
|
def vCont_supports_mode(self, mode, inferior_args=None):
|
|
# Setup the stub and set the gdb remote command stream.
|
|
procs = self.prep_debug_monitor_and_inferior(inferior_args=inferior_args)
|
|
self.add_vCont_query_packets()
|
|
|
|
# Run the gdb remote command stream.
|
|
context = self.expect_gdbremote_sequence()
|
|
self.assertIsNotNone(context)
|
|
|
|
# Pull out supported modes.
|
|
supported_vCont_modes = self.parse_vCont_query_response(context)
|
|
self.assertIsNotNone(supported_vCont_modes)
|
|
|
|
# Verify we support the given mode.
|
|
self.assertTrue(mode in supported_vCont_modes)
|
|
|
|
def vCont_supports_c(self):
|
|
self.vCont_supports_mode("c")
|
|
|
|
def vCont_supports_C(self):
|
|
self.vCont_supports_mode("C")
|
|
|
|
def vCont_supports_s(self):
|
|
self.vCont_supports_mode("s")
|
|
|
|
def vCont_supports_S(self):
|
|
self.vCont_supports_mode("S")
|
|
|
|
@debugserver_test
|
|
@dsym_test
|
|
def test_vCont_supports_c_debugserver_dsym(self):
|
|
self.init_debugserver_test()
|
|
self.buildDsym()
|
|
self.vCont_supports_c()
|
|
|
|
@llgs_test
|
|
def test_vCont_supports_c_llgs_dwarf(self):
|
|
self.init_llgs_test()
|
|
self.buildDwarf()
|
|
self.vCont_supports_c()
|
|
|
|
@debugserver_test
|
|
@dsym_test
|
|
def test_vCont_supports_C_debugserver_dsym(self):
|
|
self.init_debugserver_test()
|
|
self.buildDsym()
|
|
self.vCont_supports_C()
|
|
|
|
@llgs_test
|
|
@dwarf_test
|
|
def test_vCont_supports_C_llgs_dwarf(self):
|
|
self.init_llgs_test()
|
|
self.buildDwarf()
|
|
self.vCont_supports_C()
|
|
|
|
@debugserver_test
|
|
@dsym_test
|
|
def test_vCont_supports_s_debugserver_dsym(self):
|
|
self.init_debugserver_test()
|
|
self.buildDsym()
|
|
self.vCont_supports_s()
|
|
|
|
@llgs_test
|
|
@dwarf_test
|
|
def test_vCont_supports_s_llgs_dwarf(self):
|
|
self.init_llgs_test()
|
|
self.buildDwarf()
|
|
self.vCont_supports_s()
|
|
|
|
@debugserver_test
|
|
@dsym_test
|
|
def test_vCont_supports_S_debugserver_dsym(self):
|
|
self.init_debugserver_test()
|
|
self.buildDsym()
|
|
self.vCont_supports_S()
|
|
|
|
@llgs_test
|
|
@dwarf_test
|
|
def test_vCont_supports_S_llgs_dwarf(self):
|
|
self.init_llgs_test()
|
|
self.buildDwarf()
|
|
self.vCont_supports_S()
|
|
|
|
@debugserver_test
|
|
@dsym_test
|
|
def test_single_step_only_steps_one_instruction_with_Hc_vCont_s_debugserver_dsym(self):
|
|
self.init_debugserver_test()
|
|
self.buildDsym()
|
|
self.set_inferior_startup_launch()
|
|
self.single_step_only_steps_one_instruction(use_Hc_packet=True, step_instruction="vCont;s")
|
|
|
|
@llgs_test
|
|
@dwarf_test
|
|
def test_single_step_only_steps_one_instruction_with_Hc_vCont_s_llgs_dwarf(self):
|
|
self.init_llgs_test()
|
|
self.buildDwarf()
|
|
self.set_inferior_startup_launch()
|
|
self.single_step_only_steps_one_instruction(use_Hc_packet=True, step_instruction="vCont;s")
|
|
|
|
@debugserver_test
|
|
@dsym_test
|
|
def test_single_step_only_steps_one_instruction_with_vCont_s_thread_debugserver_dsym(self):
|
|
self.init_debugserver_test()
|
|
self.buildDsym()
|
|
self.set_inferior_startup_launch()
|
|
self.single_step_only_steps_one_instruction(use_Hc_packet=False, step_instruction="vCont;s:{thread}")
|
|
|
|
@llgs_test
|
|
@dwarf_test
|
|
def test_single_step_only_steps_one_instruction_with_vCont_s_thread_llgs_dwarf(self):
|
|
self.init_llgs_test()
|
|
self.buildDwarf()
|
|
self.set_inferior_startup_launch()
|
|
self.single_step_only_steps_one_instruction(use_Hc_packet=False, step_instruction="vCont;s:{thread}")
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest2.main()
|