Skip to content

[lldb][test] Disable flaky TestLldbGdbServer.py #138263

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 2, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions lldb/test/API/tools/lldb-server/TestLldbGdbServer.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,8 @@ def test_first_launch_stop_reply_thread_matches_first_qC(self):
context = self.expect_gdbremote_sequence()
self.assertEqual(context.get("thread_id_QC"), context.get("thread_id_?"))

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

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