[Lldb-commits] [lldb] [debugserver] Implement MultiBreakpoint (PR #192914)
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Mon Apr 27 04:35:57 PDT 2026
================
@@ -0,0 +1,203 @@
+"""
+Tests the jMultiBreakpoint packet, this test runs against whichever debug server
+the platform provides (debugserver on macOS, lldb-server elsewhere).
+"""
+
+import json
+
+import lldb
+from lldbsuite.test.decorators import *
+from lldbsuite.test.lldbtest import *
+from lldbsuite.test import lldbutil
+from lldbsuite.test.gdbclientutils import *
+
+
+ at skipUnlessDarwin # Remove once lldbsever support is implemented.
+ at skipIfOutOfTreeDebugserver
+ at skipIf(archs=no_match(["x86_64", "arm64", "aarch64"]))
----------------
DavidSpickett wrote:
Add a comment like "Runs on systems where we can always predict the software break size.".
https://github.com/llvm/llvm-project/pull/192914
More information about the lldb-commits
mailing list