[Lldb-commits] [lldb] r129778 - /lldb/trunk/test/breakpoint_ignore_count/TestBreakpointIgnoreCount.py

Johnny Chen johnny.chen at apple.com
Tue Apr 19 11:17:20 PDT 2011


Author: johnny
Date: Tue Apr 19 13:17:20 2011
New Revision: 129778

URL: http://llvm.org/viewvc/llvm-project?rev=129778&view=rev
Log:
Converted to use SBProcess.LaunchSimple().

Modified:
    lldb/trunk/test/breakpoint_ignore_count/TestBreakpointIgnoreCount.py

Modified: lldb/trunk/test/breakpoint_ignore_count/TestBreakpointIgnoreCount.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/breakpoint_ignore_count/TestBreakpointIgnoreCount.py?rev=129778&r1=129777&r2=129778&view=diff
==============================================================================
--- lldb/trunk/test/breakpoint_ignore_count/TestBreakpointIgnoreCount.py (original)
+++ lldb/trunk/test/breakpoint_ignore_count/TestBreakpointIgnoreCount.py Tue Apr 19 13:17:20 2011
@@ -101,8 +101,7 @@
                         "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)





More information about the lldb-commits mailing list