aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/python_api
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2020-08-06 13:02:52 -0700
committerJonas Devlieghere <jonas@devlieghere.com>2020-08-06 13:03:18 -0700
commitba37b144e6cf7ecaa7e6eb5bb34c02aeaa8a9e3c (patch)
tree39a143aba928255c7346f2f3624ed526a26f0550 /lldb/test/API/python_api
parent30eeb742f1d11d7a7036e3b8a3bffc1dfd252082 (diff)
downloadllvm-ba37b144e6cf7ecaa7e6eb5bb34c02aeaa8a9e3c.zip
llvm-ba37b144e6cf7ecaa7e6eb5bb34c02aeaa8a9e3c.tar.gz
llvm-ba37b144e6cf7ecaa7e6eb5bb34c02aeaa8a9e3c.tar.bz2
[LLDB] Skip test_launch_simple from TestTargetAPI.py when remote
Diffstat (limited to 'lldb/test/API/python_api')
-rw-r--r--lldb/test/API/python_api/target/TestTargetAPI.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/test/API/python_api/target/TestTargetAPI.py b/lldb/test/API/python_api/target/TestTargetAPI.py
index 70bf1a3..68c56ae 100644
--- a/lldb/test/API/python_api/target/TestTargetAPI.py
+++ b/lldb/test/API/python_api/target/TestTargetAPI.py
@@ -153,6 +153,7 @@ class TargetAPITestCase(TestBase):
@add_test_categories(['pyapi'])
@skipIfWindows # stdio manipulation unsupported on Windows
+ @skipIfRemote # stdio manipulation unsupported on remote iOS devices<rdar://problem/54581135>
@skipIf(oslist=["linux"], archs=["arm", "aarch64"])
def test_launch_simple(self):
d = {'EXE': 'b.out'}
@@ -287,7 +288,7 @@ class TargetAPITestCase(TestBase):
# Try it with a null name:
list = target.FindFunctions(None, lldb.eFunctionNameTypeAuto)
self.assertTrue(list.GetSize() == 0)
-
+
list = target.FindFunctions('c', lldb.eFunctionNameTypeAuto)
self.assertTrue(list.GetSize() == 1)