From f7626eff37fd020265c60c66e288002aa49eeb15 Mon Sep 17 00:00:00 2001 From: Johnny Chen Date: Wed, 1 Jun 2011 23:53:57 +0000 Subject: Turn off printing of command sent to the pexpect-spawned child process to make the script more robotic. llvm-svn: 132441 --- lldb/utils/test/run-until-faulted.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lldb/utils/test/run-until-faulted.py') diff --git a/lldb/utils/test/run-until-faulted.py b/lldb/utils/test/run-until-faulted.py index 93982037ada..d895f565a79 100755 --- a/lldb/utils/test/run-until-faulted.py +++ b/lldb/utils/test/run-until-faulted.py @@ -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', -- cgit v1.2.3