summaryrefslogtreecommitdiffstats
path: root/lldb/test/python_api/symbol-context/TestSymbolContext.py
diff options
context:
space:
mode:
authorJohnny Chen <johnny.chen@apple.com>2011-04-19 19:50:43 +0000
committerJohnny Chen <johnny.chen@apple.com>2011-04-19 19:50:43 +0000
commitaedbe0f3476e02eb79e5472ab09dea463e12acf8 (patch)
tree52deba28d5c6373ba0fabe35ad045ad3fbaca2a5 /lldb/test/python_api/symbol-context/TestSymbolContext.py
parent90da3ccadb34df062fb520c832604b157231b8e0 (diff)
downloadbcm5719-llvm-aedbe0f3476e02eb79e5472ab09dea463e12acf8.tar.gz
bcm5719-llvm-aedbe0f3476e02eb79e5472ab09dea463e12acf8.zip
Converted to use SBProcess.LaunchSimple().
llvm-svn: 129793
Diffstat (limited to 'lldb/test/python_api/symbol-context/TestSymbolContext.py')
-rw-r--r--lldb/test/python_api/symbol-context/TestSymbolContext.py3
1 files changed, 1 insertions, 2 deletions
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)
OpenPOWER on IntegriCloud