https://github.com/felipepiovezan created https://github.com/llvm/llvm-project/pull/184304
None >From 38d0c1b6c9d0b81a33164e66d74998ae15156af5 Mon Sep 17 00:00:00 2001 From: Felipe de Azevedo Piovezan <[email protected]> Date: Tue, 3 Mar 2026 09:31:50 +0000 Subject: [PATCH] [lldb] Disable shared build for TestTemplateArgs,TestEvents,TestTypeList --- lldb/test/API/lang/cpp/template/TestTemplateArgs.py | 1 + lldb/test/API/python_api/event/TestEvents.py | 1 + lldb/test/API/python_api/type/TestTypeList.py | 1 + 3 files changed, 3 insertions(+) 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) _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
