Skip to content

Commit 3617a91

Browse files
committed
uglification
1 parent 48c5137 commit 3617a91

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

lldb/test/API/functionalities/inline-stepping/TestInlineStepping.py

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,9 @@ def step_in_template(self):
364364
step_sequence = [["// In max_value specialized", "into"]]
365365
self.run_step_sequence(step_sequence)
366366

367-
def run_to_call_site_and_step(self, source_regex, func_name, start_pos, one_more_step_loc = None):
367+
def run_to_call_site_and_step(
368+
self, source_regex, func_name, start_pos, one_more_step_loc=None
369+
):
368370
main_spec = lldb.SBFileSpec("calling.cpp")
369371
# Set the breakpoint by file and line, not sourced regex because
370372
# we want to make sure we can set breakpoints on call sites:
@@ -411,8 +413,11 @@ def run_to_call_site_and_step(self, source_regex, func_name, start_pos, one_more
411413
if one_more_step_loc:
412414
thread.StepInto()
413415
frame_0 = thread.frame[0]
414-
self.assertEqual(frame_0.line_entry.line, line_number(self.main_source, one_more_step_loc),
415-
"Was able to step one more time")
416+
self.assertEqual(
417+
frame_0.line_entry.line,
418+
line_number(self.main_source, one_more_step_loc),
419+
"Was able to step one more time",
420+
)
416421
process.Kill()
417422
target.Clear()
418423

@@ -426,6 +431,8 @@ def virtual_inline_stepping(self):
426431
"In caller_trivial_inline_2", "caller_trivial_inline_2", 3
427432
)
428433
self.run_to_call_site_and_step(
429-
"In caller_trivial_inline_3", "caller_trivial_inline_3", 4, "After caller_trivial_inline_3"
434+
"In caller_trivial_inline_3",
435+
"caller_trivial_inline_3",
436+
4,
437+
"After caller_trivial_inline_3",
430438
)
431-

0 commit comments

Comments
 (0)