[Lldb-commits] [lldb] [lldb-dap] Provide `declarationLocation` for variables (PR #102928)

Walter Erquinigo via lldb-commits lldb-commits at lists.llvm.org
Thu Aug 22 08:35:30 PDT 2024


================
@@ -0,0 +1,40 @@
+"""
+Test lldb-dap locations request
+"""
+
+
+import dap_server
+from lldbsuite.test.decorators import *
+from lldbsuite.test.lldbtest import *
+from lldbsuite.test import lldbutil
+import lldbdap_testcase
+import os
+
+
+class TestDAP_locations(lldbdap_testcase.DAPTestCaseBase):
+    @skipIfWindows
----------------
walter-erquinigo wrote:

Oof, this is quite unfortunate. I remember that not long ago there was someone who was trying to make these tests past on window, but it seems that this effort wasn't successful.
And well, yes, in order to have an easier time with buildbots, feel free to reintroduce the `SkipIfWindows` decorator in your tests.

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


More information about the lldb-commits mailing list