We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5539b0 commit c8aa4d3Copy full SHA for c8aa4d3
lldb/packages/Python/lldbsuite/test/lldbreverse.py
@@ -123,6 +123,10 @@ def respond(self, packet):
123
# Suppress this because it contains thread stop reasons which we might
124
# need to modify, and we don't want to have to implement that.
125
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 ""
130
if packet[0] == "z" or packet[0] == "Z":
131
reply = self.pass_through(packet)
132
if reply == "OK":
0 commit comments