Skip to content

Commit ace189b

Browse files
authored
[lldb][test] Disable flaky TestLldbGdbServer.py (#138263)
See #138085 for details.
1 parent ee3610e commit ace189b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lldb/test/API/tools/lldb-server/TestLldbGdbServer.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,8 @@ def test_first_launch_stop_reply_thread_matches_first_qC(self):
110110
context = self.expect_gdbremote_sequence()
111111
self.assertEqual(context.get("thread_id_QC"), context.get("thread_id_?"))
112112

113+
# This test is flaky on Windows. Sometimes returns 'Exception 0x80000003'.
114+
@skipIf(oslist=["windows"], bugnumber="github.com/llvm/llvm-project/issues/138085")
113115
def test_attach_commandline_continue_app_exits(self):
114116
self.build()
115117
self.set_inferior_startup_attach()
@@ -303,6 +305,8 @@ def Hg_switches_to_3_threads(self, pass_pid=False):
303305
self.assertIsNotNone(context.get("thread_id"))
304306
self.assertEqual(int(context.get("thread_id"), 16), thread)
305307

308+
# This test is flaky on Windows. Sometimes returns '$E37#af'.
309+
@skipIf(oslist=["windows"], bugnumber="github.com/llvm/llvm-project/issues/138085")
306310
@skipIf(compiler="clang", compiler_version=["<", "11.0"])
307311
def test_Hg_switches_to_3_threads_launch(self):
308312
self.build()

0 commit comments

Comments
 (0)