Author: Dmitry Vasilyev Date: 2025-05-08T11:22:37+04:00 New Revision: e18f248956b317f06f7822920c72d7a2eebcd267
URL: https://github.com/llvm/llvm-project/commit/e18f248956b317f06f7822920c72d7a2eebcd267 DIFF: https://github.com/llvm/llvm-project/commit/e18f248956b317f06f7822920c72d7a2eebcd267.diff LOG: [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 Added: Modified: lldb/test/API/tools/lldb-server/TestLldbGdbServer.py Removed: ################################################################################ diff --git a/lldb/test/API/tools/lldb-server/TestLldbGdbServer.py b/lldb/test/API/tools/lldb-server/TestLldbGdbServer.py index 2c328125e3058..67690a275f0da 100644 --- a/lldb/test/API/tools/lldb-server/TestLldbGdbServer.py +++ b/lldb/test/API/tools/lldb-server/TestLldbGdbServer.py @@ -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() _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits