[Lldb-commits] [lldb] 09217ba - [lldb] Disable shared build for TestTemplateArgs, TestEvents, TestTypeList (#184304)

via lldb-commits lldb-commits at lists.llvm.org
Tue Mar 3 01:34:45 PST 2026


Author: Felipe de Azevedo Piovezan
Date: 2026-03-03T09:34:39Z
New Revision: 09217ba90459efe47c2309ab51b168a869f377d3

URL: https://github.com/llvm/llvm-project/commit/09217ba90459efe47c2309ab51b168a869f377d3
DIFF: https://github.com/llvm/llvm-project/commit/09217ba90459efe47c2309ab51b168a869f377d3.diff

LOG: [lldb] Disable shared build for TestTemplateArgs,TestEvents,TestTypeList (#184304)

See https://github.com/llvm/llvm-project/pull/181720

Added: 
    

Modified: 
    lldb/test/API/lang/cpp/template/TestTemplateArgs.py
    lldb/test/API/python_api/event/TestEvents.py
    lldb/test/API/python_api/type/TestTypeList.py

Removed: 
    


################################################################################
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)


        


More information about the lldb-commits mailing list