summaryrefslogtreecommitdiffstats
path: root/lldb/test/objc-stepping/TestObjCStepping.py
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/test/objc-stepping/TestObjCStepping.py')
-rw-r--r--lldb/test/objc-stepping/TestObjCStepping.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/test/objc-stepping/TestObjCStepping.py b/lldb/test/objc-stepping/TestObjCStepping.py
index 291735fb286..62805524251 100644
--- a/lldb/test/objc-stepping/TestObjCStepping.py
+++ b/lldb/test/objc-stepping/TestObjCStepping.py
@@ -64,7 +64,8 @@ class TestObjCStepping(TestBase):
self.assertTrue(break_returnStruct_call_super.IsValid(), VALID_BREAKPOINT)
# Now launch the process, and do not stop at entry point.
- self.process = target.LaunchProcess([], [], os.ctermid(), 0, False)
+ error = lldb.SBError()
+ self.process = target.Launch (None, None, os.ctermid(), os.ctermid(), os.ctermid(), None, 0, False, error)
self.assertTrue(self.process.IsValid(), PROCESS_IS_VALID)
OpenPOWER on IntegriCloud