[Lldb-commits] [lldb] c7dbf20 - [lldb-dap] Test: disable children return test for all arm architectures (#129409)
via lldb-commits
lldb-commits at lists.llvm.org
Tue Mar 4 02:46:29 PST 2025
Author: Da-Viper
Date: 2025-03-04T15:46:26+05:00
New Revision: c7dbf20e66606e7e26a28ad567ff75f3a493d3bd
URL: https://github.com/llvm/llvm-project/commit/c7dbf20e66606e7e26a28ad567ff75f3a493d3bd
DIFF: https://github.com/llvm/llvm-project/commit/c7dbf20e66606e7e26a28ad567ff75f3a493d3bd.diff
LOG: [lldb-dap] Test: disable children return test for all arm architectures (#129409)
amd64 and aarch64 are treated differently
Follows up #106907
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 f0e1e51365d9b..a9371e5c5fe68 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
@@ -41,7 +41,7 @@ def test_get_num_children(self):
)["body"]["result"],
)
- @skipIf(archs=["arm64"])
+ @skipIf(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