[Lldb-commits] [lldb] [lldb] Fix bot failure due to new qSupported packet reply (PR #163643)
Felipe de Azevedo Piovezan via lldb-commits
lldb-commits at lists.llvm.org
Wed Oct 15 14:40:08 PDT 2025
https://github.com/felipepiovezan created https://github.com/llvm/llvm-project/pull/163643
When [1] landed, gdbremote server tests had to be updated to understand the new packet field.
[1]: https://github.com/llvm/llvm-project/pull/163249
>From 0e20af2db3f68e631c2dba87bf760e497d88645e Mon Sep 17 00:00:00 2001
From: Felipe de Azevedo Piovezan <fpiovezan at apple.com>
Date: Wed, 15 Oct 2025 14:37:40 -0700
Subject: [PATCH] [lldb] Fix bot failure due to new qSupported packet reply
When [1] landed, gdbremote server tests had to be updated to understand
the new packet field.
[1]: https://github.com/llvm/llvm-project/pull/163249
---
.../lldbsuite/test/tools/lldb-server/gdbremote_testcase.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/gdbremote_testcase.py b/lldb/packages/Python/lldbsuite/test/tools/lldb-server/gdbremote_testcase.py
index aea6b9fe36b2c..5ba642bbedf74 100644
--- a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/gdbremote_testcase.py
+++ b/lldb/packages/Python/lldbsuite/test/tools/lldb-server/gdbremote_testcase.py
@@ -931,6 +931,7 @@ def add_qSupported_packets(self, client_features=[]):
"QNonStop",
"SupportedWatchpointTypes",
"SupportedCompressions",
+ "MultiMemRead",
]
def parse_qSupported_response(self, context):
More information about the lldb-commits
mailing list