[Lldb-commits] [lldb] [lldb] Disable shared build for TestTemplateArgs, TestEvents, TestTypeList (PR #184304)
via lldb-commits
lldb-commits at lists.llvm.org
Tue Mar 3 01:34:46 PST 2026
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-lldb
Author: Felipe de Azevedo Piovezan (felipepiovezan)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/184304.diff
3 Files Affected:
- (modified) lldb/test/API/lang/cpp/template/TestTemplateArgs.py (+1)
- (modified) lldb/test/API/python_api/event/TestEvents.py (+1)
- (modified) lldb/test/API/python_api/type/TestTypeList.py (+1)
``````````diff
diff --git a/lldb/test/API/lang/cpp/template/TestTemplateArgs.py b/lldb/test/API/lang/cpp/template/TestTemplateArgs.py
index 2fd05d6404650..c32413873d1ca 100644
--- a/lldb/test/API/lang/cpp/template/TestTemplateArgs.py
+++ b/lldb/test/API/lang/cpp/template/TestTemplateArgs.py
@@ -12,6 +12,7 @@
class TemplateArgsTestCase(TestBase):
+ SHARED_BUILD_TESTCASE = False
def prepareProcess(self):
self.build()
diff --git a/lldb/test/API/python_api/event/TestEvents.py b/lldb/test/API/python_api/event/TestEvents.py
index 4a1b0d82c5c32..d8abf7223edf5 100644
--- a/lldb/test/API/python_api/event/TestEvents.py
+++ b/lldb/test/API/python_api/event/TestEvents.py
@@ -12,6 +12,7 @@
@skipIfLinux # llvm.org/pr25924, sometimes generating SIGSEGV
class EventAPITestCase(TestBase):
NO_DEBUG_INFO_TESTCASE = True
+ SHARED_BUILD_TESTCASE = False
def setUp(self):
# Call super's setUp().
diff --git a/lldb/test/API/python_api/type/TestTypeList.py b/lldb/test/API/python_api/type/TestTypeList.py
index b49f9027d0dd9..e4dc810169089 100644
--- a/lldb/test/API/python_api/type/TestTypeList.py
+++ b/lldb/test/API/python_api/type/TestTypeList.py
@@ -9,6 +9,7 @@
from lldbsuite.test import lldbplatformutil
class TypeAndTypeListTestCase(TestBase):
+ SHARED_BUILD_TESTCASE = False
def setUp(self):
# Call super's setUp().
TestBase.setUp(self)
``````````
</details>
https://github.com/llvm/llvm-project/pull/184304
More information about the lldb-commits
mailing list