[Lldb-commits] [lldb] [LLDB] Run API tests with PDB too (PR #149305)
via lldb-commits
lldb-commits at lists.llvm.org
Thu Aug 7 03:45:22 PDT 2025
================
@@ -804,6 +804,13 @@ def setUpCommands(cls):
)
return commands
+ def getDebugInfoSetupCommands(self):
+ if self.getDebugInfo() == "native-pdb":
----------------
Nerixyz wrote:
`setUpCommands` is a `@classmethod`, so it gets the calling class type as it's argument, not the instance. I don't know if/why `@classmethod` is needed there.
https://github.com/llvm/llvm-project/pull/149305
More information about the lldb-commits
mailing list