From ba37b144e6cf7ecaa7e6eb5bb34c02aeaa8a9e3c Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Thu, 6 Aug 2020 13:02:52 -0700 Subject: [LLDB] Skip test_launch_simple from TestTargetAPI.py when remote --- lldb/test/API/python_api/target/TestTargetAPI.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lldb/test/API/python_api') 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 @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) -- cgit v1.1