[llvm-commits] [test-suite] r134564 -	/test-suite/trunk/CollectDebugInfoUsingLLDB.py
    Devang Patel 
    dpatel at apple.com
       
    Wed Jul  6 16:39:26 PDT 2011
    
    
  
Author: dpatel
Date: Wed Jul  6 18:39:26 2011
New Revision: 134564
URL: http://llvm.org/viewvc/llvm-project?rev=134564&view=rev
Log:
Simplify.
Modified:
    test-suite/trunk/CollectDebugInfoUsingLLDB.py
Modified: test-suite/trunk/CollectDebugInfoUsingLLDB.py
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/CollectDebugInfoUsingLLDB.py?rev=134564&r1=134563&r2=134564&view=diff
==============================================================================
--- test-suite/trunk/CollectDebugInfoUsingLLDB.py (original)
+++ test-suite/trunk/CollectDebugInfoUsingLLDB.py Wed Jul  6 18:39:26 2011
@@ -202,7 +202,7 @@
     # Launch the process. Since we specified synchronous mode, we won't return
     # from this function until we hit the breakpoint at main
     sberror = lldb.SBError()
-    process = target.Launch (None, None, os.ctermid(), os.ctermid(), os.ctermid(), None, 0, False, sberror)
+    process = target.LaunchSimple(None, None, None)
     # Make sure the launch went ok
     while stopped_at_breakpoint(process):
         # print "stopped at a bp"
    
    
More information about the llvm-commits
mailing list