forked from OSchip/llvm-project
parent
726da628e8
commit
ae11b64db6
|
@ -52,6 +52,7 @@ class StepOverBreakpointsTestCase(TestBase):
|
|||
self.thread = lldbutil.get_one_thread_stopped_at_breakpoint(self.process, self.breakpoint1)
|
||||
self.assertIsNotNone(self.thread, "Didn't stop at breakpoint 1.")
|
||||
|
||||
@skipIf(bugnumber="llvm.org/pr31972", hostoslist=["windows"])
|
||||
def test_step_instruction(self):
|
||||
# Count instructions between breakpoint_1 and breakpoint_4
|
||||
contextList = self.target.FindFunctions('main', lldb.eFunctionNameTypeAuto)
|
||||
|
@ -87,6 +88,7 @@ class StepOverBreakpointsTestCase(TestBase):
|
|||
self.process.Continue()
|
||||
self.assertEquals(self.process.GetState(), lldb.eStateExited)
|
||||
|
||||
@skipIf(bugnumber="llvm.org/pr31972", hostoslist=["windows"])
|
||||
def test_step_over(self):
|
||||
#lldb.DBG.EnableLog("lldb", ["step","breakpoint"])
|
||||
|
||||
|
|
Loading…
Reference in New Issue