[LLDB] Skip test_launch_simple from TestTargetAPI.py when remote

This commit is contained in:
Jonas Devlieghere 2020-08-06 13:02:52 -07:00
parent 30eeb742f1
commit ba37b144e6
1 changed files with 2 additions and 1 deletions

View File

@ -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)