https://github.com/kastiglione created https://github.com/llvm/llvm-project/pull/182133
None >From 5fb9dba88e005ebc8ec3697fbbb47aea3ddc0afd Mon Sep 17 00:00:00 2001 From: Dave Lee <[email protected]> Date: Wed, 18 Feb 2026 12:47:55 -0800 Subject: [PATCH] [lldb] Disable shared build dir when testing with PDB --- lldb/packages/Python/lldbsuite/test/lldbtest.py | 3 +++ 1 file changed, 3 insertions(+) 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(_): _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
