Skip to content

Commit 8055f76

Browse files
committed
fix: explanation
This isn't compiled with DWARF, but linked with -gdwarf, so LLD generates a PDB.
1 parent 0180d12 commit 8055f76

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lldb/test/API/functionalities/multiple-slides/TestMultipleSlides.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@
1212
class MultipleSlidesTestCase(TestBase):
1313
NO_DEBUG_INFO_TESTCASE = True
1414

15-
# DWARF doesn't include public symbols on Windows, so LLDB falls back to the PDB.
16-
# Symbols don't have a size in the native PDB plugin.
15+
# The intermediate object main.o is compiled without debug info, but
16+
# a.out is linked with `-gdwarf` on Windows. This creates a PDB.
17+
# However, in the native PDB plugin, the symbols don't have a size.
1718
@skipIfWindows
1819
def test_mulitple_slides(self):
1920
"""Test that a binary can be slid multiple times correctly."""

0 commit comments

Comments
 (0)