Turn off printing of command sent to the pexpect-spawned child process to make the script more robotic.

llvm-svn: 132441
This commit is contained in:
Johnny Chen 2011-06-01 23:53:57 +00:00
parent 190b959273
commit f7626eff37
1 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ def do_lldb_launch_loop(lldb_command, exe, exe_options):
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 @@ def do_lldb_launch_loop(lldb_command, exe, exe_options):
# 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',