Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,7 @@ def test(self):
)

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