[LLDB] Skip test_launch_simple from TestTargetAPI.py when remote
This commit is contained in:
parent
30eeb742f1
commit
ba37b144e6
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue