[Lldb-commits] [lldb] r132441 - /lldb/trunk/utils/test/run-until-faulted.py

Johnny Chen johnny.chen at apple.com
Wed Jun 1 16:53:57 PDT 2011


Author: johnny
Date: Wed Jun  1 18:53:57 2011
New Revision: 132441

URL: http://llvm.org/viewvc/llvm-project?rev=132441&view=rev
Log:
Turn off printing of command sent to the pexpect-spawned child process to make the script more robotic.

Modified:
    lldb/trunk/utils/test/run-until-faulted.py

Modified: lldb/trunk/utils/test/run-until-faulted.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/utils/test/run-until-faulted.py?rev=132441&r1=132440&r2=132441&view=diff
==============================================================================
--- lldb/trunk/utils/test/run-until-faulted.py (original)
+++ lldb/trunk/utils/test/run-until-faulted.py Wed Jun  1 18:53:57 2011
@@ -37,7 +37,7 @@
     lldb.expect(prompt)
 
     # Now issue the file command.
-    print "sending 'file %s' command..." % exe
+    #print "sending 'file %s' command..." % exe
     lldb.sendline('file %s' % exe)
     lldb.expect(prompt)
 
@@ -47,7 +47,7 @@
     #    count = count + 1
     for i in range(100):
         count = i
-        print "sending 'process launch -- %s' command... (iteration: %d)" % (exe_options, count)
+        #print "sending 'process launch -- %s' command... (iteration: %d)" % (exe_options, count)
         lldb.sendline('process launch -- %s' % exe_options)
         index = lldb.expect(['Process .* exited with status',
                              'Process .* stopped',





More information about the lldb-commits mailing list