Use the updated process launch API.

llvm-svn: 115917
This commit is contained in:
Johnny Chen 2010-10-07 16:06:12 +00:00
parent fbfba899a6
commit b792cc1d50
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ class ClassTypesTestCase(TestBase):
# Now launch the process, and do not stop at entry point.
rc = lldb.SBError()
self.process = target.LaunchProcess([''], [''], os.ctermid(), 0, False, rc)
self.process = target.Launch([''], [''], os.ctermid(), 0, False, rc)
#self.breakAfterLaunch(self.process, "C::C(int, int, int)")
if not rc.Success() or not self.process.IsValid():