[Lldb-commits] [lldb] r129782 - /lldb/trunk/test/foundation/TestSymbolTable.py

Johnny Chen johnny.chen at apple.com
Tue Apr 19 11:50:04 PDT 2011


Author: johnny
Date: Tue Apr 19 13:50:04 2011
New Revision: 129782

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

Modified:
    lldb/trunk/test/foundation/TestSymbolTable.py

Modified: lldb/trunk/test/foundation/TestSymbolTable.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/foundation/TestSymbolTable.py?rev=129782&r1=129781&r2=129782&view=diff
==============================================================================
--- lldb/trunk/test/foundation/TestSymbolTable.py (original)
+++ lldb/trunk/test/foundation/TestSymbolTable.py Tue Apr 19 13:50:04 2011
@@ -45,8 +45,7 @@
         self.assertTrue(target.IsValid(), VALID_TARGET)
 
         # Launch the process, and do not stop at the entry point.
-        error = lldb.SBError()
-        process = target.Launch (self.dbg.GetListener(), None, None, os.ctermid(), os.ctermid(), os.ctermid(), None, 0, False, error)
+        process = target.LaunchSimple(None, None, os.getcwd())
 
         #
         # Exercise Python APIs to access the symbol table entries.





More information about the lldb-commits mailing list