diff options
author | Lawrence D'Anna <lawrence_danna@apple.com> | 2019-10-09 21:50:49 +0000 |
---|---|---|
committer | Lawrence D'Anna <lawrence_danna@apple.com> | 2019-10-09 21:50:49 +0000 |
commit | 9eb13719236458cd0c035ebbe882cfbf0add7bfc (patch) | |
tree | da1a138aa2b03e0d2ebc5464541b0fec953f98fd /lldb/packages/Python/lldbsuite | |
parent | b24022cd723f47c8dd5e78ed7b210c1b6287ff42 (diff) | |
download | bcm5719-llvm-9eb13719236458cd0c035ebbe882cfbf0add7bfc.tar.gz bcm5719-llvm-9eb13719236458cd0c035ebbe882cfbf0add7bfc.zip |
SBFile support in SBCommandReturnObject
Summary:
This patch add SBFile interfaces to SBCommandReturnObject, and
removes the internal callers of its FILE* interfaces.
Reviewers: JDevlieghere, jasonmolenda, labath
Reviewed By: JDevlieghere
Subscribers: lldb-commits
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D68434
llvm-svn: 374238
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/python_api/file_handle/TestFileHandle.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/python_api/file_handle/TestFileHandle.py b/lldb/packages/Python/lldbsuite/test/python_api/file_handle/TestFileHandle.py index db7703a49be..60917b68a6c 100644 --- a/lldb/packages/Python/lldbsuite/test/python_api/file_handle/TestFileHandle.py +++ b/lldb/packages/Python/lldbsuite/test/python_api/file_handle/TestFileHandle.py @@ -309,7 +309,7 @@ class FileHandleTestCase(lldbtest.TestBase): @add_test_categories(['pyapi']) - @expectedFailure # FIXME need SBFile interfaces on SBCommandReturnObject + @skipIf(py_version=['<', (3,)]) def test_immediate_string(self): f = io.StringIO() ret = lldb.SBCommandReturnObject() @@ -325,7 +325,7 @@ class FileHandleTestCase(lldbtest.TestBase): @add_test_categories(['pyapi']) - @expectedFailure # FIXME need SBFile interfaces on SBCommandReturnObject + @skipIf(py_version=['<', (3,)]) def test_immediate_sbfile_string(self): f = io.StringIO() ret = lldb.SBCommandReturnObject() |