diff options
author | Zachary Turner <zturner@google.com> | 2015-11-16 23:58:20 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-11-16 23:58:20 +0000 |
commit | ba1057022cd442258d722235f17c5c97a591c158 (patch) | |
tree | 8e86d833a74187a95414cded6967212f257a529d /lldb/packages/Python/lldbsuite/test/python_api/default-constructor | |
parent | 0c35282c659b91836522d28001ebedfc4efd15b2 (diff) | |
download | bcm5719-llvm-ba1057022cd442258d722235f17c5c97a591c158.tar.gz bcm5719-llvm-ba1057022cd442258d722235f17c5c97a591c158.zip |
Python 3 - Skip a certain test for a particular (swig,python) combo.
Current versions of SWIG have a bug with Python 3 that causes
Python to assert when iterating over a generator. This patch
skips the test for the right combination of Python version and
SWIG version. I'm attempting to upstream a patch to SWIG to
fix this in a subsequent as-of-yet unreleased version, but
I don't know how long that will take.
llvm-svn: 253273
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/python_api/default-constructor')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py b/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py index 822b2c74392..aa3a6141326 100644 --- a/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py +++ b/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py @@ -227,6 +227,8 @@ class APIDefaultConstructorTestCase(TestBase): @add_test_categories(['pyapi']) @no_debug_info_test + # 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(): |