We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09984be commit e18f248Copy full SHA for e18f248
lldb/test/API/tools/lldb-server/TestLldbGdbServer.py
@@ -202,6 +202,13 @@ def test_qThreadInfo_matches_qC_launch(self):
202
self.set_inferior_startup_launch()
203
self.qThreadInfo_matches_qC()
204
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
+ )
212
@expectedFailureAll(oslist=["windows"]) # expect one more thread stopped
213
def test_qThreadInfo_matches_qC_attach(self):
214
self.build()
0 commit comments