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 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
