Converted to use SBProcess.LaunchSimple().

llvm-svn: 129787
This commit is contained in:
Johnny Chen
2011-04-19 19:14:12 +00:00
parent ff4a08372e
commit d04cd7b0c4

View File

@@ -64,8 +64,7 @@ class TestObjCStepping(TestBase):
self.assertTrue(break_returnStruct_call_super.IsValid(), VALID_BREAKPOINT)
# Now launch the process, and do not stop at entry point.
error = lldb.SBError()
self.process = target.Launch (self.dbg.GetListener(), None, None, os.ctermid(), os.ctermid(), os.ctermid(), None, 0, False, error)
self.process = target.LaunchSimple (None, None, os.getcwd())
self.assertTrue(self.process.IsValid(), PROCESS_IS_VALID)