Converted to use SBProcess.LaunchSimple().
llvm-svn: 129789
This commit is contained in:
parent
baf11799da
commit
272ae4df7c
|
|
@ -122,8 +122,7 @@ class EventAPITestCase(TestBase):
|
||||||
VALID_BREAKPOINT)
|
VALID_BREAKPOINT)
|
||||||
|
|
||||||
# Now launch the process, and do not stop at the entry point.
|
# Now launch the process, and do not stop at the entry point.
|
||||||
error = lldb.SBError()
|
self.process = target.LaunchSimple(None, None, os.getcwd())
|
||||||
self.process = target.Launch (self.dbg.GetListener(), None, None, os.ctermid(), os.ctermid(), os.ctermid(), None, 0, False, error)
|
|
||||||
|
|
||||||
self.process = target.GetProcess()
|
self.process = target.GetProcess()
|
||||||
self.assertTrue(self.process.GetState() == lldb.eStateStopped,
|
self.assertTrue(self.process.GetState() == lldb.eStateStopped,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue