forked from OSchip/llvm-project
Converted to use SBProcess.LaunchSimple().
llvm-svn: 129793
This commit is contained in:
parent
90da3ccadb
commit
aedbe0f347
|
@ -47,8 +47,7 @@ class SymbolContextAPITestCase(TestBase):
|
|||
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.process = target.GetProcess()
|
||||
self.assertTrue(self.process.IsValid(), PROCESS_IS_VALID)
|
||||
|
|
Loading…
Reference in New Issue