[Lldb-commits] [lldb] Initial step in targets DAP support (PR #86623)
Walter Erquinigo via lldb-commits
lldb-commits at lists.llvm.org
Tue Mar 26 09:46:55 PDT 2024
================
@@ -0,0 +1,66 @@
+"""
+Test lldb-dap stepInTargets request
+"""
+
+import dap_server
+from lldbsuite.test.decorators import *
+from lldbsuite.test.lldbtest import *
+import lldbdap_testcase
+from lldbsuite.test import lldbutil
+
+
+class TestDAP_stepInTargets(lldbdap_testcase.DAPTestCaseBase):
+ @skipIf(archs=no_match(["x86_64"])) # ARM flow kind is not supported yet.
----------------
walter-erquinigo wrote:
mention that this doesn't work on arm because of lack of InstructionControlFlowKind support
https://github.com/llvm/llvm-project/pull/86623
More information about the lldb-commits
mailing list