summaryrefslogtreecommitdiffstats
path: root/lldb
diff options
context:
space:
mode:
authorJohnny Chen <johnny.chen@apple.com>2011-04-19 18:17:20 +0000
committerJohnny Chen <johnny.chen@apple.com>2011-04-19 18:17:20 +0000
commitc506d8bf9ff1f9a1a43d651a4eadb7ed313369c8 (patch)
tree79c6a373a4a4bc59108055d1d0c0f37f5b913b29 /lldb
parent0529d4da939c3306a2e4ae58a037b8b435dd812f (diff)
downloadbcm5719-llvm-c506d8bf9ff1f9a1a43d651a4eadb7ed313369c8.tar.gz
bcm5719-llvm-c506d8bf9ff1f9a1a43d651a4eadb7ed313369c8.zip
Converted to use SBProcess.LaunchSimple().
llvm-svn: 129778
Diffstat (limited to 'lldb')
-rw-r--r--lldb/test/breakpoint_ignore_count/TestBreakpointIgnoreCount.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/test/breakpoint_ignore_count/TestBreakpointIgnoreCount.py b/lldb/test/breakpoint_ignore_count/TestBreakpointIgnoreCount.py
index d74a7c5753c..e231ac25f7a 100644
--- a/lldb/test/breakpoint_ignore_count/TestBreakpointIgnoreCount.py
+++ b/lldb/test/breakpoint_ignore_count/TestBreakpointIgnoreCount.py
@@ -101,8 +101,7 @@ class BreakpointIgnoreCountTestCase(TestBase):
"SetIgnoreCount() works correctly")
# 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