[Lldb-commits] [lldb] [lldb][minidump] Skip the new minidump tests on ARM (PR #214766)
Leandro Lupori via lldb-commits
lldb-commits at lists.llvm.org
Fri Aug 7 07:58:34 PDT 2026
https://github.com/luporl created https://github.com/llvm/llvm-project/pull/214766
Apparently, the new tests introduced by #212641 and #212861 use features
not supported on ARM.
>From 25dd09a683ff3701af56abf2b208676d0e1aff11 Mon Sep 17 00:00:00 2001
From: Leandro Lupori <leandro.lupori at linaro.org>
Date: Fri, 7 Aug 2026 14:50:14 +0000
Subject: [PATCH] [lldb][minidump] Skip the new minidump tests on ARM
Apparently, the new tests introduced by #212641 and #212861 use features
not supported on ARM.
---
.../partial_read/TestProcessSaveCoreMinidumpPartialRead.py | 1 +
.../size_mismatch/TestProcessSaveCoreMinidumpSizeMismatch.py | 1 +
2 files changed, 2 insertions(+)
diff --git a/lldb/test/API/functionalities/process_save_core_minidump/partial_read/TestProcessSaveCoreMinidumpPartialRead.py b/lldb/test/API/functionalities/process_save_core_minidump/partial_read/TestProcessSaveCoreMinidumpPartialRead.py
index 02c7b06c15dbc..9e61489df925e 100644
--- a/lldb/test/API/functionalities/process_save_core_minidump/partial_read/TestProcessSaveCoreMinidumpPartialRead.py
+++ b/lldb/test/API/functionalities/process_save_core_minidump/partial_read/TestProcessSaveCoreMinidumpPartialRead.py
@@ -43,6 +43,7 @@ def assert_memory64_datasize_within_file(self, core_path):
self.assertTrue(memory64_list_found, "minidump has no Memory64List stream")
@skipUnlessPlatform(["linux"])
+ @skipIf(archs=["arm$"])
def test_save_core_range_with_unreadable_tail(self):
self.build()
exe = self.getBuildArtifact("a.out")
diff --git a/lldb/test/API/functionalities/process_save_core_minidump/size_mismatch/TestProcessSaveCoreMinidumpSizeMismatch.py b/lldb/test/API/functionalities/process_save_core_minidump/size_mismatch/TestProcessSaveCoreMinidumpSizeMismatch.py
index f7379b9051069..d60d75af62c9f 100644
--- a/lldb/test/API/functionalities/process_save_core_minidump/size_mismatch/TestProcessSaveCoreMinidumpSizeMismatch.py
+++ b/lldb/test/API/functionalities/process_save_core_minidump/size_mismatch/TestProcessSaveCoreMinidumpSizeMismatch.py
@@ -51,6 +51,7 @@ def assert_memory64_datasize_within_file(self, core_path):
@skipUnlessPlatform(["linux"])
@skipIf(hostoslist=["windows"])
+ @skipIf(archs=["arm$"])
def test_memory64_datasize_matches_written_bytes(self):
self.build()
exe = self.getBuildArtifact("a.out")
More information about the lldb-commits
mailing list