aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Spickett <david.spickett@linaro.org>2025-05-01 09:30:07 +0000
committerDavid Spickett <david.spickett@linaro.org>2025-05-01 09:30:33 +0000
commit47424df2d5c6cc5a2b2d49a8cad438d8e75fec61 (patch)
tree40d7f4a2ce3ede332d00114a807cdbc0e0828e37
parentc5b750f5af72fadd4c00c120c9c585240da466b4 (diff)
downloadllvm-47424df2d5c6cc5a2b2d49a8cad438d8e75fec61.zip
llvm-47424df2d5c6cc5a2b2d49a8cad438d8e75fec61.tar.gz
llvm-47424df2d5c6cc5a2b2d49a8cad438d8e75fec61.tar.bz2
[lldb][test] Skip part of TestLldbGdbServer.py on Windows
See https://github.com/llvm/llvm-project/issues/138085.
-rw-r--r--lldb/test/API/tools/lldb-server/TestLldbGdbServer.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/test/API/tools/lldb-server/TestLldbGdbServer.py b/lldb/test/API/tools/lldb-server/TestLldbGdbServer.py
index 1bb5b80..eef157c 100644
--- a/lldb/test/API/tools/lldb-server/TestLldbGdbServer.py
+++ b/lldb/test/API/tools/lldb-server/TestLldbGdbServer.py
@@ -83,6 +83,10 @@ class LldbGdbServerTestCase(
context = self.expect_gdbremote_sequence()
self.assertIsNotNone(context)
+ # Sometimes fails:
+ # regex '^\$QC([0-9a-fA-F]+)#' failed to match against content '$E45#ae'
+ # See https://github.com/llvm/llvm-project/issues/138085.
+ @skipIfWindows
def test_first_launch_stop_reply_thread_matches_first_qC(self):
self.build()
procs = self.prep_debug_monitor_and_inferior()