Author: Ebuka Ezike Date: 2026-03-02T14:42:19Z New Revision: 919ae1cd2f464e5e453049fe17662b5fbdfc2504
URL: https://github.com/llvm/llvm-project/commit/919ae1cd2f464e5e453049fe17662b5fbdfc2504 DIFF: https://github.com/llvm/llvm-project/commit/919ae1cd2f464e5e453049fe17662b5fbdfc2504.diff LOG: [lldb-dap] Skip return_variable_with_children on arm64 (#184132) In lldb arm64 does not support scalar return types that is larger than the register size. skip the test on that architecture. Unblocks CI. Added: Modified: lldb/test/API/tools/lldb-dap/variables/children/TestDAP_variables_children.py Removed: ################################################################################ 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 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
