[Lldb-commits] [lldb] [lldb] Disable shared build dir when testing with PDB (PR #182133)
via lldb-commits
lldb-commits at lists.llvm.org
Wed Feb 18 12:48:58 PST 2026
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-lldb
Author: Dave Lee (kastiglione)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/182133.diff
1 Files Affected:
- (modified) lldb/packages/Python/lldbsuite/test/lldbtest.py (+3)
``````````diff
diff --git a/lldb/packages/Python/lldbsuite/test/lldbtest.py b/lldb/packages/Python/lldbsuite/test/lldbtest.py
index 65fd56ed76c1c..e6af76cc5e06d 100644
--- a/lldb/packages/Python/lldbsuite/test/lldbtest.py
+++ b/lldb/packages/Python/lldbsuite/test/lldbtest.py
@@ -1809,6 +1809,9 @@ def __new__(cls, name, bases, attrs):
if original_testcase.NO_DEBUG_INFO_TESTCASE:
return original_testcase
+ if original_testcase.TEST_WITH_PDB_DEBUG_INFO:
+ original_testcase.SHARED_BUILD_TESTCASE = False
+
# Default implementation for skip/xfail reason based on the debug category,
# where "None" means to run the test as usual.
def no_reason(_):
``````````
</details>
https://github.com/llvm/llvm-project/pull/182133
More information about the lldb-commits
mailing list