https://github.com/DavidSpickett created https://github.com/llvm/llvm-project/pull/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. >From 3f2bef9b7dbdf073ab7ed4673f9d5f5e5547ce30 Mon Sep 17 00:00:00 2001 From: David Spickett <[email protected]> Date: Mon, 24 Aug 2026 09:41:46 +0000 Subject: [PATCH] [lldb][test] Disable lldb-dap watchpoint test on Arm Linux 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. --- .../lldb-dap/databreakpoint/TestDAP_setDataBreakpoints.py | 3 +++ 1 file changed, 3 insertions(+) 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
