https://github.com/bulbazord created https://github.com/llvm/llvm-project/pull/216163
This has been very flaky on Green Dragon. >From 76a63e51c4b567a07fd0872038b4646d7e0fadf5 Mon Sep 17 00:00:00 2001 From: Alex Langford <[email protected]> Date: Thu, 13 Aug 2026 12:55:44 -0700 Subject: [PATCH] [lldb] Disable TestDAP_module.py on Darwin platforms This has been very flaky on Green Dragon. --- lldb/test/API/tools/lldb-dap/module/TestDAP_module.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lldb/test/API/tools/lldb-dap/module/TestDAP_module.py b/lldb/test/API/tools/lldb-dap/module/TestDAP_module.py index 7bc90e36349dd..3f7c506a060fd 100644 --- a/lldb/test/API/tools/lldb-dap/module/TestDAP_module.py +++ b/lldb/test/API/tools/lldb-dap/module/TestDAP_module.py @@ -7,9 +7,11 @@ from lldbsuite.test.decorators import ( requireDarwin, + skipIf, skipIfWindows, skipIfTargetDoesNotSupportSharedLibraries, ) +import lldbsuite.test.lldbplatformutil as lldbplatformutil from lldbsuite.test.lldbtest import line_number from lldbsuite.test.tools.lldb_dap.types import ( CompileUnitsArgs, @@ -21,6 +23,10 @@ @skipIfTargetDoesNotSupportSharedLibraries() +@skipIf( + oslist=lldbplatformutil.getDarwinOSTriples(), + bugnumber="https://github.com/llvm/llvm-project/issues/216150", +) class TestDAP_module(DAPTestCaseBase): def run_test(self, symbol_basename: str, expect_debug_info_size: bool): session = self.build_and_create_session() _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
