File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
lldb/test/API/python_api/target Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -153,6 +153,7 @@ def test_read_memory(self):
153
153
154
154
@add_test_categories (['pyapi' ])
155
155
@skipIfWindows # stdio manipulation unsupported on Windows
156
+ @skipIfRemote # stdio manipulation unsupported on remote iOS devices<rdar://problem/54581135>
156
157
@skipIf (oslist = ["linux" ], archs = ["arm" , "aarch64" ])
157
158
def test_launch_simple (self ):
158
159
d = {'EXE' : 'b.out' }
@@ -287,7 +288,7 @@ def find_functions(self, exe_name):
287
288
# Try it with a null name:
288
289
list = target .FindFunctions (None , lldb .eFunctionNameTypeAuto )
289
290
self .assertTrue (list .GetSize () == 0 )
290
-
291
+
291
292
list = target .FindFunctions ('c' , lldb .eFunctionNameTypeAuto )
292
293
self .assertTrue (list .GetSize () == 1 )
293
294
You can’t perform that action at this time.
0 commit comments