Skip to content

[lldb][test] Disable flaky test_qThreadInfo_matches_qC_attach test on AArch64 Linux #138940

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 8, 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
7 changes: 7 additions & 0 deletions lldb/test/API/tools/lldb-server/TestLldbGdbServer.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,13 @@ def test_qThreadInfo_matches_qC_launch(self):
self.set_inferior_startup_launch()
self.qThreadInfo_matches_qC()

# This test is flaky on AArch64 Linux. Sometimes it causes an unhandled Error:
# Operation not permitted in lldb_private::process_linux::NativeProcessLinux::Attach(int).
@skipIf(
oslist=["linux"],
archs=["aarch64"],
bugnumber="github.com/llvm/llvm-project/issues/138085",
)
@expectedFailureAll(oslist=["windows"]) # expect one more thread stopped
def test_qThreadInfo_matches_qC_attach(self):
self.build()
Expand Down
Loading