diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2016-01-13 20:06:56 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2016-01-13 20:06:56 +0000 | 
| commit | 7fed546d1996271dabc7cf71d4d033125c4da4ee (patch) | |
| tree | 2b6dc7dcb4a6380cb331aded15f5a81c0038e194 /packages/Python/lldbsuite/test/python_api/value | |
| parent | 9e6d35490a6542f9c97607f93c2ef8ca8e03cbcc (diff) | |
Notes
Diffstat (limited to 'packages/Python/lldbsuite/test/python_api/value')
| -rw-r--r-- | packages/Python/lldbsuite/test/python_api/value/change_values/TestChangeValueAPI.py | 1 | ||||
| -rw-r--r-- | packages/Python/lldbsuite/test/python_api/value/linked_list/TestValueAPILinkedList.py | 2 | 
2 files changed, 3 insertions, 0 deletions
| diff --git a/packages/Python/lldbsuite/test/python_api/value/change_values/TestChangeValueAPI.py b/packages/Python/lldbsuite/test/python_api/value/change_values/TestChangeValueAPI.py index 77aefe05be46..f8ad97277f05 100644 --- a/packages/Python/lldbsuite/test/python_api/value/change_values/TestChangeValueAPI.py +++ b/packages/Python/lldbsuite/test/python_api/value/change_values/TestChangeValueAPI.py @@ -28,6 +28,7 @@ class ChangeValueAPITestCase(TestBase):      @expectedFailureWindows("llvm.org/pr24772")      @add_test_categories(['pyapi']) +    @expectedFlakeyLinux("llvm.org/pr25652")      def test_change_value(self):          """Exercise the SBValue::SetValueFromCString API."""          d = {'EXE': self.exe_name} diff --git a/packages/Python/lldbsuite/test/python_api/value/linked_list/TestValueAPILinkedList.py b/packages/Python/lldbsuite/test/python_api/value/linked_list/TestValueAPILinkedList.py index 22d7e7ebf7e8..8b60be97bdc2 100644 --- a/packages/Python/lldbsuite/test/python_api/value/linked_list/TestValueAPILinkedList.py +++ b/packages/Python/lldbsuite/test/python_api/value/linked_list/TestValueAPILinkedList.py @@ -25,6 +25,8 @@ class ValueAsLinkedListTestCase(TestBase):          # Find the line number to break at.          self.line = line_number('main.cpp', '// Break at this line') +    # Py3 asserts due to a bug in SWIG.  A fix for this was upstreamed into SWIG 3.0.8. +    @skipIf(py_version=['>=', (3,0)], swig_version=['<', (3,0,8)])      @add_test_categories(['pyapi'])      def test(self):          """Exercise SBValue API linked_list_iter.""" | 
