[llvm-branch-commits] [lldb] 6ee8975 - Revert "[lldb] Fix lldb-x86_64-win bot after 454eb8bc0ac (#185004)"
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Fri Mar 6 08:10:08 PST 2026
Author: Stefan Gränitz
Date: 2026-03-06T17:10:04+01:00
New Revision: 6ee8975d7f796cdb560ef4af2021ad3bc5c4aba6
URL: https://github.com/llvm/llvm-project/commit/6ee8975d7f796cdb560ef4af2021ad3bc5c4aba6
DIFF: https://github.com/llvm/llvm-project/commit/6ee8975d7f796cdb560ef4af2021ad3bc5c4aba6.diff
LOG: Revert "[lldb] Fix lldb-x86_64-win bot after 454eb8bc0ac (#185004)"
This reverts commit bc077f52c9fe20f60f1319eee0d704e5265fde1b.
Added:
Modified:
lldb/test/API/symstore/Makefile
lldb/test/API/symstore/TestSymStoreLocal.py
Removed:
################################################################################
diff --git a/lldb/test/API/symstore/Makefile b/lldb/test/API/symstore/Makefile
index c9319d6e6888a..6279aee698dad 100644
--- a/lldb/test/API/symstore/Makefile
+++ b/lldb/test/API/symstore/Makefile
@@ -1,2 +1,4 @@
+MAKE_PDB := YES
+
C_SOURCES := main.c
include Makefile.rules
diff --git a/lldb/test/API/symstore/TestSymStoreLocal.py b/lldb/test/API/symstore/TestSymStoreLocal.py
index 154af876fea3f..f45e368613847 100644
--- a/lldb/test/API/symstore/TestSymStoreLocal.py
+++ b/lldb/test/API/symstore/TestSymStoreLocal.py
@@ -71,11 +71,12 @@ 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")
self.build()
exe_file = "a.out"
- sym_file = "a.pdb"
+ if self.getDebugInfo() == "pdb":
+ sym_file = "a.pdb"
+ else:
+ self.skipTest("Non-PDB debug info variants not yet supported")
self.assertTrue(os.path.isfile(self.getBuildArtifact(exe_file)))
self.assertTrue(os.path.isfile(self.getBuildArtifact(sym_file)))
return exe_file, sym_file
More information about the llvm-branch-commits
mailing list