summaryrefslogtreecommitdiff
path: root/lldb/test/API/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2023-08-04 14:04:39 -0700
committerJonas Devlieghere <jonas@devlieghere.com>2023-08-04 14:34:01 -0700
commite0053bc04e6b80ece8b334b268c2942e012009b9 (patch)
tree13eed5b6dac2b4577e335ed8ff72cac5134a0694 /lldb/test/API/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py
parent043d03d25bd7eadef66685de298342b35fe6b466 (diff)
[lldb] Bump SWIG minimum version to 4
SWIG 4 was released in 2019 and has been the de-facto standard for a while now. All bots are running SWIG 4.0 or later. This was motivated by #64279 which discovered that 662548c broke the LLDB build with SWIG 3 on Windows. Differential revision: https://reviews.llvm.org/D156804
Diffstat (limited to 'lldb/test/API/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py')
-rw-r--r--lldb/test/API/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/lldb/test/API/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py b/lldb/test/API/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py
index d56c5b01d5f2..ec5b4da0f29b 100644
--- a/lldb/test/API/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py
+++ b/lldb/test/API/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py
@@ -117,8 +117,6 @@ class APIDefaultConstructorTestCase(TestBase):
sb_debugger.fuzz_obj(obj)
- # darwin: This test passes with swig 3.0.2, fails w/3.0.5 other tests fail
- # with 2.0.12 http://llvm.org/pr23488
def test_SBError(self):
obj = lldb.SBError()
if self.TraceOn():
@@ -225,9 +223,6 @@ class APIDefaultConstructorTestCase(TestBase):
sb_listener.fuzz_obj(obj)
- # Py3 asserts due to a bug in SWIG. Trying to upstream a patch to fix
- # this in 3.0.8
- @skipIf(py_version=[">=", (3, 0)], swig_version=["<", (3, 0, 8)])
def test_SBModule(self):
obj = lldb.SBModule()
if self.TraceOn():