[Lldb-commits] [lldb] [lldb][split-dwarf] implement GetSeparateDebugInfo for SymbolFileOnDemand (PR #71230)

Alex Langford via lldb-commits lldb-commits at lists.llvm.org
Mon Nov 6 08:55:19 PST 2023


================
@@ -130,3 +130,29 @@ def test_dwos_not_loaded_table_output(self):
                 "0x[a-zA-Z0-9]{16}\s+E\s+.*foo\.dwo",
             ],
         )
+
+    @skipIfRemote
+    @skipIfDarwin
+    @skipIfWindows
----------------
bulbazord wrote:

The TestDumpOso is good, but I was more concerned about testing the DWO path on Darwin (and Windows, although I'm a little less concerned about that one for... reasons).
What I want to avoid is a change being made on a Darwin host that breaks the DWO case and a change being made on a Linux host that breaks OSO debugging. LLVM has tests that build DWO files for Linux/Android platforms and I bet we could get Mach-O Objects with DWARF embedded in them in a similar fashion.

https://github.com/llvm/llvm-project/pull/71230


More information about the lldb-commits mailing list