Skip to content

Commit 220f87d

Browse files
[lldb] Use Continue instead of StepOver in TestSwiftAsyncBreakpoints
The test was doing a StepOver and checking that the stop reason was a breakpoint; it seems more sensible to do a continue in that case.
1 parent 0044000 commit 220f87d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/test/API/lang/swift/async_breakpoints/TestSwiftAsyncBreakpoints.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def test(self):
3636
self.assertEquals(thread.GetStopDescription(128), "breakpoint 2.1")
3737
self.expect("expr timestamp1", substrs=["42"])
3838

39-
thread.StepOver()
39+
process.Continue()
4040
self.assertIn("breakpoint 3.1", thread.GetStopDescription(128))
4141
self.expect("expr timestamp1", substrs=["42"])
4242

0 commit comments

Comments
 (0)