Skip to content

Commit c8aa4d3

Browse files
Update lldb/packages/Python/lldbsuite/test/lldbreverse.py
Co-authored-by: Pavel Labath <[email protected]>
1 parent b5539b0 commit c8aa4d3

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lldb/packages/Python/lldbsuite/test/lldbreverse.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,10 @@ def respond(self, packet):
123123
# Suppress this because it contains thread stop reasons which we might
124124
# need to modify, and we don't want to have to implement that.
125125
return ""
126+
if packet[0] == "x":
127+
# Suppress *binary* reads as results starting with "O" can be mistaken for an output packet
128+
# by the test server code
129+
return ""
126130
if packet[0] == "z" or packet[0] == "Z":
127131
reply = self.pass_through(packet)
128132
if reply == "OK":

0 commit comments

Comments
 (0)