Skip to content

Commit e18f248

Browse files
authored
[lldb][test] Disable flaky test_qThreadInfo_matches_qC_attach test on AArch64 Linux (#138940)
See #138085 for details. https://lab.llvm.org/buildbot/#/builders/59/builds/16937 https://lab.llvm.org/buildbot/#/builders/59/builds/17224
1 parent 09984be commit e18f248

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,13 @@ def test_qThreadInfo_matches_qC_launch(self):
202202
self.set_inferior_startup_launch()
203203
self.qThreadInfo_matches_qC()
204204

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

0 commit comments

Comments
 (0)