Skip to content

Commit 898d5b3

Browse files
authored
[lldb] Fix indentation in TestSwiftStepInAsync (NFC) (#7573)
Replace tab indentation of comments with spaces.
1 parent 91482c1 commit 898d5b3

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
@@ -16,8 +16,8 @@ def test(self):
1616
src = lldb.SBFileSpec('main.swift')
1717
_, process, _, _ = lldbutil.run_to_source_breakpoint(self, 'await', src)
1818

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

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

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

0 commit comments

Comments
 (0)