[Lldb-commits] [lldb] [lldb] Skip minidump case in TestDynamicValue.py for arm64e (PR #200047)
Alex Langford via lldb-commits
lldb-commits at lists.llvm.org
Mon Jun 1 12:53:18 PDT 2026
https://github.com/bulbazord updated https://github.com/llvm/llvm-project/pull/200047
>From 6bc7b2740ae1b52f3481945b4640c8df6f2ea5b8 Mon Sep 17 00:00:00 2001
From: Alex Langford <alangford at apple.com>
Date: Wed, 27 May 2026 13:37:59 -0700
Subject: [PATCH 1/2] [lldb] Skip minidump case in TestDynamicValue.py for
arm64e
The minidump format does not currently have a way to distinguish arm64e
from arm64.
---
lldb/test/API/lang/cpp/dynamic-value/TestDynamicValue.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/lldb/test/API/lang/cpp/dynamic-value/TestDynamicValue.py b/lldb/test/API/lang/cpp/dynamic-value/TestDynamicValue.py
index a230d07219b9a..f608f8d3cf84b 100644
--- a/lldb/test/API/lang/cpp/dynamic-value/TestDynamicValue.py
+++ b/lldb/test/API/lang/cpp/dynamic-value/TestDynamicValue.py
@@ -283,6 +283,7 @@ def test_from_forward_decl(self):
@no_debug_info_test
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24663")
@expectedFailureAll(archs=["arm$"]) # Minidump saving not implemented
+ @skipIf(archs=["arm64e"]) # arm64e incompatible with minidump
def test_from_core_file(self):
"""Test fetching C++ dynamic values from core files. Specifically, test
that we can determine the dynamic type of the value if the core file
>From d6a7aa6b4cc3b68774090b451791e4b40c914c48 Mon Sep 17 00:00:00 2001
From: Alex Langford <alangford at apple.com>
Date: Mon, 1 Jun 2026 12:53:01 -0700
Subject: [PATCH 2/2] format
---
lldb/test/API/lang/cpp/dynamic-value/TestDynamicValue.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lldb/test/API/lang/cpp/dynamic-value/TestDynamicValue.py b/lldb/test/API/lang/cpp/dynamic-value/TestDynamicValue.py
index f608f8d3cf84b..efbbb8a6d3c1e 100644
--- a/lldb/test/API/lang/cpp/dynamic-value/TestDynamicValue.py
+++ b/lldb/test/API/lang/cpp/dynamic-value/TestDynamicValue.py
@@ -282,8 +282,8 @@ def test_from_forward_decl(self):
@no_debug_info_test
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24663")
- @expectedFailureAll(archs=["arm$"]) # Minidump saving not implemented
- @skipIf(archs=["arm64e"]) # arm64e incompatible with minidump
+ @expectedFailureAll(archs=["arm$"]) # Minidump saving not implemented
+ @skipIf(archs=["arm64e"]) # arm64e incompatible with minidump
def test_from_core_file(self):
"""Test fetching C++ dynamic values from core files. Specifically, test
that we can determine the dynamic type of the value if the core file
More information about the lldb-commits
mailing list