From aedbe0f3476e02eb79e5472ab09dea463e12acf8 Mon Sep 17 00:00:00 2001 From: Johnny Chen Date: Tue, 19 Apr 2011 19:50:43 +0000 Subject: Converted to use SBProcess.LaunchSimple(). llvm-svn: 129793 --- lldb/test/python_api/symbol-context/TestSymbolContext.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lldb/test/python_api') diff --git a/lldb/test/python_api/symbol-context/TestSymbolContext.py b/lldb/test/python_api/symbol-context/TestSymbolContext.py index 4c373ad1464..a1e1a806f05 100644 --- a/lldb/test/python_api/symbol-context/TestSymbolContext.py +++ b/lldb/test/python_api/symbol-context/TestSymbolContext.py @@ -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) -- cgit v1.2.3