[Lldb-commits] [lldb] 39a1ed4 - [lldb][Windows] Disable TestLinuxCore.LinuxCoreTestCase.test_object_map on Windows (#198473)

via lldb-commits lldb-commits at lists.llvm.org
Tue May 19 06:41:59 PDT 2026


Author: Dmitry Vasilyev
Date: 2026-05-19T17:41:53+04:00
New Revision: 39a1ed4222782ccc1c97bbb497aeca2718b1b793

URL: https://github.com/llvm/llvm-project/commit/39a1ed4222782ccc1c97bbb497aeca2718b1b793
DIFF: https://github.com/llvm/llvm-project/commit/39a1ed4222782ccc1c97bbb497aeca2718b1b793.diff

LOG: [lldb][Windows] Disable TestLinuxCore.LinuxCoreTestCase.test_object_map on Windows (#198473)

See https://github.com/llvm/llvm-project/issues/198471 for details.

Added: 
    

Modified: 
    lldb/test/API/functionalities/postmortem/elf-core/TestLinuxCore.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/functionalities/postmortem/elf-core/TestLinuxCore.py b/lldb/test/API/functionalities/postmortem/elf-core/TestLinuxCore.py
index 6436f60737934..fe888c670cd6b 100644
--- a/lldb/test/API/functionalities/postmortem/elf-core/TestLinuxCore.py
+++ b/lldb/test/API/functionalities/postmortem/elf-core/TestLinuxCore.py
@@ -321,6 +321,9 @@ def test_i386_sysroot(self):
 
         self.dbg.DeleteTarget(target)
 
+    @skipIf(
+        hostoslist=["windows"], bugnumber="github.com/llvm/llvm-project/issues/198471"
+    )
     def test_object_map(self):
         """Test that lldb can find the exe for an i386 linux core file using the object map."""
 


        


More information about the lldb-commits mailing list