[Lldb-commits] [lldb] r115917 - /lldb/trunk/test/class_types/TestClassTypes.py

Johnny Chen johnny.chen at apple.com
Thu Oct 7 09:06:12 PDT 2010


Author: johnny
Date: Thu Oct  7 11:06:12 2010
New Revision: 115917

URL: http://llvm.org/viewvc/llvm-project?rev=115917&view=rev
Log:
Use the updated process launch API.

Modified:
    lldb/trunk/test/class_types/TestClassTypes.py

Modified: lldb/trunk/test/class_types/TestClassTypes.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/class_types/TestClassTypes.py?rev=115917&r1=115916&r2=115917&view=diff
==============================================================================
--- lldb/trunk/test/class_types/TestClassTypes.py (original)
+++ lldb/trunk/test/class_types/TestClassTypes.py Thu Oct  7 11:06:12 2010
@@ -106,7 +106,7 @@
 
         # Now launch the process, and do not stop at entry point.
         rc = lldb.SBError()
-        self.process = target.LaunchProcess([''], [''], os.ctermid(), 0, False, rc)
+        self.process = target.Launch([''], [''], os.ctermid(), 0, False, rc)
         #self.breakAfterLaunch(self.process, "C::C(int, int, int)")
 
         if not rc.Success() or not self.process.IsValid():





More information about the lldb-commits mailing list