File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
lldb/test/API/functionalities/gdb_remote_client Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ def test_read_registers_using_g_packets(self):
140140 # early on to see if the packet is supported. So we can't say that there
141141 # will be NO p packets.
142142 # But there certainly should be no p packets after the g packet.
143-
143+
144144 self .read_registers (process )
145145 print (f"\n PACKET LOG:\n { self .server .responder .packetLog } \n " )
146146 g_pos = 0
@@ -157,7 +157,14 @@ def test_read_registers_using_g_packets(self):
157157
158158 # Make sure there aren't any `p` packets after the `g` packet:
159159 self .assertEqual (
160- 0 , len ([p for p in self .server .responder .packetLog [g_pos :] if p .startswith ("p" )])
160+ 0 ,
161+ len (
162+ [
163+ p
164+ for p in self .server .responder .packetLog [g_pos :]
165+ if p .startswith ("p" )
166+ ]
167+ ),
161168 )
162169
163170 def test_read_registers_using_p_packets (self ):
You can’t perform that action at this time.
0 commit comments