[Lldb-commits] [lldb] [lldb] Fix lldb-x86_64-win bot after 454eb8bc0ac (PR #185004)
via lldb-commits
lldb-commits at lists.llvm.org
Fri Mar 6 06:52:50 PST 2026
================
@@ -71,12 +71,11 @@ class SymStoreLocalTests(TestBase):
TEST_WITH_PDB_DEBUG_INFO = True
def build_inferior(self):
+ if self.getDebugInfo() != "pdb":
+ self.skipTest("Non-PDB debug info variants not yet supported")
----------------
Nerixyz wrote:
Could this be a `@skipUnless...` annotation? I'm not sure if they work on the whole test class or only on individual functions.
https://github.com/llvm/llvm-project/pull/185004
More information about the lldb-commits
mailing list