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
9    @skipIfWindows # No pty support to test any inferior std -i/e/o
10    @skipIf(triple='^mips')
11    def test_single_step_only_steps_one_instruction_with_s(self):
12        self.build()
13        self.set_inferior_startup_launch()
14        self.single_step_only_steps_one_instruction(
15            use_Hc_packet=True, step_instruction="s")
16