[Lldb-commits] [lldb] c64c64d - [lldb][lldb-dap] Disable more tests on Windows (#139251)
via lldb-commits
lldb-commits at lists.llvm.org
Fri May 9 05:19:16 PDT 2025
Author: David Spickett
Date: 2025-05-09T13:19:13+01:00
New Revision: c64c64db7b4b30dc5c5fad3b854f567254d1a615
URL: https://github.com/llvm/llvm-project/commit/c64c64db7b4b30dc5c5fad3b854f567254d1a615
DIFF: https://github.com/llvm/llvm-project/commit/c64c64db7b4b30dc5c5fad3b854f567254d1a615.diff
LOG: [lldb][lldb-dap] Disable more tests on Windows (#139251)
These are currently failing on Windows on Arm:
https://lab.llvm.org/buildbot/#/builders/141/builds/8556
```
********************
Unresolved Tests (1):
lldb-api :: tools/lldb-dap/memory/TestDAP_memory.py
********************
Failed Tests (1):
lldb-api :: tools/lldb-dap/variables/TestDAP_variables.py
```
Added:
Modified:
lldb/test/API/tools/lldb-dap/memory/TestDAP_memory.py
lldb/test/API/tools/lldb-dap/variables/TestDAP_variables.py
Removed:
################################################################################
diff --git a/lldb/test/API/tools/lldb-dap/memory/TestDAP_memory.py b/lldb/test/API/tools/lldb-dap/memory/TestDAP_memory.py
index ea43fccf016a7..74062f3ab2164 100644
--- a/lldb/test/API/tools/lldb-dap/memory/TestDAP_memory.py
+++ b/lldb/test/API/tools/lldb-dap/memory/TestDAP_memory.py
@@ -12,6 +12,7 @@
class TestDAP_memory(lldbdap_testcase.DAPTestCaseBase):
+ @skipIfWindows
def test_memory_refs_variables(self):
"""
Tests memory references for evaluate
@@ -33,6 +34,7 @@ def test_memory_refs_variables(self):
# Non-pointers should also have memory-references
self.assertIn("memoryReference", locals["not_a_ptr"].keys())
+ @skipIfWindows
def test_memory_refs_evaluate(self):
"""
Tests memory references for evaluate
@@ -52,6 +54,7 @@ def test_memory_refs_evaluate(self):
self.dap_server.request_evaluate("rawptr")["body"].keys(),
)
+ @skipIfWindows
def test_memory_refs_set_variable(self):
"""
Tests memory references for `setVariable`
@@ -74,6 +77,7 @@ def test_memory_refs_set_variable(self):
].keys(),
)
+ @skipIfWindows
def test_readMemory(self):
"""
Tests the 'readMemory' request
diff --git a/lldb/test/API/tools/lldb-dap/variables/TestDAP_variables.py b/lldb/test/API/tools/lldb-dap/variables/TestDAP_variables.py
index 3b45cdc245838..296e4911f4052 100644
--- a/lldb/test/API/tools/lldb-dap/variables/TestDAP_variables.py
+++ b/lldb/test/API/tools/lldb-dap/variables/TestDAP_variables.py
@@ -411,16 +411,19 @@ def do_test_scopes_variables_setVariable_evaluate(
self.verify_variables(verify_locals, locals)
+ @skipIfWindows
def test_scopes_variables_setVariable_evaluate(self):
self.do_test_scopes_variables_setVariable_evaluate(
enableAutoVariableSummaries=False
)
+ @skipIfWindows
def test_scopes_variables_setVariable_evaluate_with_descriptive_summaries(self):
self.do_test_scopes_variables_setVariable_evaluate(
enableAutoVariableSummaries=True
)
+ @skipIfWindows
def do_test_scopes_and_evaluate_expansion(self, enableAutoVariableSummaries: bool):
"""
Tests the evaluated expression expands successfully after "scopes" packets
@@ -673,6 +676,7 @@ def do_test_indexedVariables(self, enableSyntheticChildDebugging: bool):
]["variables"]
self.verify_variables(verify_children, children)
+ @skipIfWindows
def test_return_variables(self):
"""
Test the stepping out of a function with return value show the variable correctly.
More information about the lldb-commits
mailing list