[Lldb-commits] [lldb] [lldb-dap] Skip return_variable_with_children on arm64 (PR #184132)
via lldb-commits
lldb-commits at lists.llvm.org
Mon Mar 2 06:25:51 PST 2026
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-lldb
Author: Ebuka Ezike (da-viper)
<details>
<summary>Changes</summary>
In lldb arm64 does not support scalar return types that is larger than the register size. skip the test on that architecture.
Unblocks CI.
---
Full diff: https://github.com/llvm/llvm-project/pull/184132.diff
1 Files Affected:
- (modified) lldb/test/API/tools/lldb-dap/variables/children/TestDAP_variables_children.py (+1-1)
``````````diff
diff --git a/lldb/test/API/tools/lldb-dap/variables/children/TestDAP_variables_children.py b/lldb/test/API/tools/lldb-dap/variables/children/TestDAP_variables_children.py
index 7806f3817ef57..4622523931804 100644
--- a/lldb/test/API/tools/lldb-dap/variables/children/TestDAP_variables_children.py
+++ b/lldb/test/API/tools/lldb-dap/variables/children/TestDAP_variables_children.py
@@ -38,7 +38,7 @@ def test_get_num_children(self):
)["body"]["result"],
)
- @expectedFailureAll(archs=["arm$", "aarch64"])
+ @expectedFailureAll(archs=["arm$", "arm64", "aarch64"])
def test_return_variable_with_children(self):
"""
Test the stepping out of a function with return value show the children correctly
``````````
</details>
https://github.com/llvm/llvm-project/pull/184132
More information about the lldb-commits
mailing list