[Lldb-commits] [lldb] [lldb-dap] fix wrong assembly line number x64 (PR #136486)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Wed Apr 23 16:29:21 PDT 2025
================
@@ -0,0 +1,64 @@
+"""
+Test lldb-dap stack trace containing x86 assembly
+"""
+
+import lldbdap_testcase
+from lldbsuite.test.decorators import skipUnlessArch, skipUnlessPlatform
+from lldbsuite.test.lldbtest import line_number
+
+
+class TestDAP_stacktrace_x86(lldbdap_testcase.DAPTestCaseBase):
+ @skipUnlessArch("x86_64")
+ @skipUnlessPlatform(["linux"])
----------------
JDevlieghere wrote:
is this really limited to linux? It seems like this should work on at least Darwin too.
https://github.com/llvm/llvm-project/pull/136486
More information about the lldb-commits
mailing list