Skip to content

Commit 015571a

Browse files
Merge pull request #10200 from rastogishubham/FixBugAsync
Fix step over bug rdar://140159600
2 parents ddd4403 + c9973a9 commit 015571a

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

lldb/test/API/lang/swift/async/stepping/step_over_asynclet/TestSwiftAsyncStepOverAsyncLet.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,7 @@ def test(self):
2424
)
2525

2626
# Step over should reach every line in the interval [10, 20]
27-
expected_line_nums = [10, 11, 12, 13, 14, 15]
28-
# FIXME: for some reason we loop back to the start of the do block after the last statement.
29-
# rdar://140159600
30-
expected_line_nums += [8]
31-
expected_line_nums += [17, 18, 19, 20]
27+
expected_line_nums = range(10, 21)
3228
for expected_line_num in expected_line_nums:
3329
thread.StepOver()
3430
stop_reason = thread.GetStopReason()

0 commit comments

Comments
 (0)