Skip to content

Fix step over bug rdar://140159600 #10200

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
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