Skip to content

Commit ba37b14

Browse files
committed
[LLDB] Skip test_launch_simple from TestTargetAPI.py when remote
1 parent 30eeb74 commit ba37b14

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lldb/test/API/python_api/target/TestTargetAPI.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@ def test_read_memory(self):
153153

154154
@add_test_categories(['pyapi'])
155155
@skipIfWindows # stdio manipulation unsupported on Windows
156+
@skipIfRemote # stdio manipulation unsupported on remote iOS devices<rdar://problem/54581135>
156157
@skipIf(oslist=["linux"], archs=["arm", "aarch64"])
157158
def test_launch_simple(self):
158159
d = {'EXE': 'b.out'}
@@ -287,7 +288,7 @@ def find_functions(self, exe_name):
287288
# Try it with a null name:
288289
list = target.FindFunctions(None, lldb.eFunctionNameTypeAuto)
289290
self.assertTrue(list.GetSize() == 0)
290-
291+
291292
list = target.FindFunctions('c', lldb.eFunctionNameTypeAuto)
292293
self.assertTrue(list.GetSize() == 1)
293294

0 commit comments

Comments
 (0)