https://github.com/slydiman updated https://github.com/llvm/llvm-project/pull/214044
>From aa01358ad627b74ff5090ece5fb7436f32e1f345 Mon Sep 17 00:00:00 2001 From: Dmitry Vasilyev <[email protected]> Date: Tue, 4 Aug 2026 23:27:36 +0400 Subject: [PATCH] [lldb] Disable TestProcessSaveCoreMinidumpSizeMismatch on Windows hosts The buildbot [lldb-remote-linux-win](https://lab.llvm.org/buildbot/#/builders/197) is red for 6 days after #212861. The author did not respond and did nothing to fix it. #212861 cannot be reverted automatically now because of #212641. So disable TestProcessSaveCoreMinidumpSizeMismatch on Windows hosts to make the buildbot green again. --- .../size_mismatch/TestProcessSaveCoreMinidumpSizeMismatch.py | 1 + 1 file changed, 1 insertion(+) 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 4c1e2e078fb0a..f7379b9051069 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 @@ -50,6 +50,7 @@ def assert_memory64_datasize_within_file(self, core_path): self.assertTrue(memory64_list_found, "minidump has no Memory64List stream") @skipUnlessPlatform(["linux"]) + @skipIf(hostoslist=["windows"]) def test_memory64_datasize_matches_written_bytes(self): self.build() exe = self.getBuildArtifact("a.out") _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
