1import gdbremote_testcase 2from lldbsuite.test.decorators import * 3from lldbsuite.test.lldbtest import * 4from lldbsuite.test import lldbutil 5 6 7class TestGdbRemoteSingleStep(gdbremote_testcase.GdbRemoteTestCaseBase): 8 @skipIfWindows # No pty support to test any inferior std -i/e/o 9 @skipIf(triple="^mips") 10 def test_single_step_only_steps_one_instruction_with_s(self): 11 self.build() 12 self.set_inferior_startup_launch() 13 self.single_step_only_steps_one_instruction( 14 use_Hc_packet=True, step_instruction="s" 15 ) 16