Skip to content

Commit 0225267

Browse files
committed
format
1 parent 91619c0 commit 0225267

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

lldb/test/API/functionalities/data-formatter/data-formatter-ptr-matching/TestDataFormatterPtrMatching.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,13 @@ def cleanup():
5858
r".* bp = 0x[0-9a-f]+ MyInt\n",
5959
r".* bp_p = 0x[0-9a-f]+\n",
6060
r".* bp_pp = 0x[0-9a-f]+\n",
61-
])
61+
],
62+
)
6263

6364
self.runCmd('type summary delete "Int"')
6465
self.runCmd(
65-
'type summary add --cascade true --pointer-match-depth 2 -s "MyInt" "Int"')
66+
'type summary add --cascade true --pointer-match-depth 2 -s "MyInt" "Int"'
67+
)
6668
self.expect(
6769
"frame variable",
6870
patterns=[
@@ -83,7 +85,8 @@ def cleanup():
8385
r".* bp = 0x[0-9a-f]+ MyInt\n",
8486
r".* bp_p = 0x[0-9a-f]+ MyInt\n",
8587
r".* bp_pp = 0x[0-9a-f]+\n",
86-
])
88+
],
89+
)
8790

8891
self.runCmd('type summary delete "Int"')
8992
self.runCmd(
@@ -105,4 +108,5 @@ def cleanup():
105108
r".* bp = 0x[0-9a-f]+ MyFoo\n",
106109
r".* bp_p = 0x[0-9a-f]+ MyFoo\n",
107110
r".* bp_pp = 0x[0-9a-f]+\n",
108-
])
111+
],
112+
)

0 commit comments

Comments
 (0)