[Lldb-commits] [lldb] Support single stopped event in lldb-dap (PR #98568)

Walter Erquinigo via lldb-commits lldb-commits at lists.llvm.org
Fri Jul 12 16:23:30 PDT 2024


================
@@ -0,0 +1,91 @@
+"""
+Test lldb-dap setBreakpoints request
+"""
+
+from lldbsuite.test.decorators import *
+from lldbsuite.test.lldbtest import *
+import lldbdap_testcase
+from lldbsuite.test import lldbutil
+
+
+class TestDAP_stopEvents(lldbdap_testcase.DAPTestCaseBase):
+    @skipIfWindows
+    @skipIfRemote
----------------
walter-erquinigo wrote:

You don't need `@skipIfRemote`. That decorator is automatically applied to all DAP functions.

https://github.com/llvm/llvm-project/pull/98568


More information about the lldb-commits mailing list