Author: David Spickett Date: 2026-08-24T10:45:21+01:00 New Revision: f80f27ed07e646c03faa90d7379ce38724f6363b
URL: https://github.com/llvm/llvm-project/commit/f80f27ed07e646c03faa90d7379ce38724f6363b DIFF: https://github.com/llvm/llvm-project/commit/f80f27ed07e646c03faa90d7379ce38724f6363b.diff LOG: [lldb][test] Disable lldb-dap watchpoint test on Arm Linux (#218360) Added by #215228. The test assertions are fine, but when the program continues at the end, it faults. More details in https://github.com/llvm/llvm-project/issues/217961. Added: Modified: lldb/test/API/tools/lldb-dap/databreakpoint/TestDAP_setDataBreakpoints.py Removed: ################################################################################ diff --git a/lldb/test/API/tools/lldb-dap/databreakpoint/TestDAP_setDataBreakpoints.py b/lldb/test/API/tools/lldb-dap/databreakpoint/TestDAP_setDataBreakpoints.py index f675c207066ce..b0205d51dc83c 100644 --- a/lldb/test/API/tools/lldb-dap/databreakpoint/TestDAP_setDataBreakpoints.py +++ b/lldb/test/API/tools/lldb-dap/databreakpoint/TestDAP_setDataBreakpoints.py @@ -185,6 +185,9 @@ def test_functionality(self): stop_event = session.continue_to_breakpoint(self.expect_not_none(bp_cond.id)) self.assertEqual(session.top_frame_from(stop_event).locals["x"].value, "10") + # Test works but test program faults after continuing. + # https://github.com/llvm/llvm-project/issues/217961 + @skipIf(oslist=["linux"], archs=["arm$"]) @skipIfWindows def test_console_watchpoint_preserved(self): """Test setDataBreakpoints must not delete watchpoints created via the console.""" _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
