Skip to content

Commit 0d700bc

Browse files
authored
[lldb] Fix indentation in TestSwiftStepInAsync (NFC) (#7573) (#7592)
Replace tab indentation of comments with spaces. (cherry-picked from commit 898d5b3)
1 parent 4698cf4 commit 0d700bc

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

lldb/test/API/lang/swift/async/stepping/step-in/TestSwiftStepInAsync.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ def test(self):
1717
src = lldb.SBFileSpec('main.swift')
1818
_, process, _, _ = lldbutil.run_to_source_breakpoint(self, 'await', src)
1919

20-
# When run with debug info enabled builds, this prevents stepping from
21-
# stopping in Swift Concurrency runtime functions.
20+
# When run with debug info enabled builds, this prevents stepping from
21+
# stopping in Swift Concurrency runtime functions.
2222
self.runCmd("settings set target.process.thread.step-avoid-libraries libswift_Concurrency.dylib")
2323

2424
# All thread actions are done on the currently selected thread.
@@ -39,18 +39,18 @@ def test(self):
3939
caller_after = thread().frames[1].function.GetDisplayName()
4040
line_after = thread().frames[0].line_entry.line
4141

42-
# Breakpoints on lines with an `await` may result in more than
43-
# one breakpoint location. Specifically a location before an
44-
# async function is called, and then a location on the resume
45-
# function. In this case, running `step` on these lines will
46-
# move execution forward within the same function, _not_ step
47-
# into a new function.
42+
# Breakpoints on lines with an `await` may result in more than
43+
# one breakpoint location. Specifically a location before an
44+
# async function is called, and then a location on the resume
45+
# function. In this case, running `step` on these lines will
46+
# move execution forward within the same function, _not_ step
47+
# into a new function.
4848
#
49-
# As this test is for stepping into async functions, when the
50-
# step-in keeps execution on the same or next line -- not a
51-
# different function, then it can be ignored. rdar://76116620
49+
# As this test is for stepping into async functions, when the
50+
# step-in keeps execution on the same or next line -- not a
51+
# different function, then it can be ignored. rdar://76116620
5252
if line_after in (line_before, line_before + 1):
53-
# When stepping stops at breakpoint, don't continue.
53+
# When stepping stops at breakpoint, don't continue.
5454
if thread().stop_reason != lldb.eStopReasonBreakpoint:
5555
process.Continue()
5656
continue

0 commit comments

Comments
 (0)