[Lldb-commits] [lldb] [lldb-dap] Skip return_variable_with_children on arm64 (PR #184132)

Ebuka Ezike via lldb-commits lldb-commits at lists.llvm.org
Mon Mar 2 06:25:16 PST 2026


https://github.com/da-viper created https://github.com/llvm/llvm-project/pull/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. 

>From adeb358adf40fbca3ed542fada1f98098f9e20e6 Mon Sep 17 00:00:00 2001
From: Ebuka Ezike <yerimyah1 at gmail.com>
Date: Mon, 2 Mar 2026 14:20:06 +0000
Subject: [PATCH] [lldb-dap] Skip return_variable_with_children on arm64

In lldb arm64 does not support scalar return types that is
larger than the register size. skip the the test on that
architecture.
---
 .../lldb-dap/variables/children/TestDAP_variables_children.py   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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



More information about the lldb-commits mailing list