[Lldb-commits] [lldb] r139924 - /lldb/trunk/test/dotest.py
Johnny Chen
johnny.chen at apple.com
Fri Sep 16 11:09:45 PDT 2011
Author: johnny
Date: Fri Sep 16 13:09:45 2011
New Revision: 139924
URL: http://llvm.org/viewvc/llvm-project?rev=139924&view=rev
Log:
Minor change for output message (less is better).
Modified:
lldb/trunk/test/dotest.py
Modified: lldb/trunk/test/dotest.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/dotest.py?rev=139924&r1=139923&r2=139924&view=diff
==============================================================================
--- lldb/trunk/test/dotest.py (original)
+++ lldb/trunk/test/dotest.py Fri Sep 16 13:09:45 2011
@@ -800,7 +800,7 @@
pipe = subprocess.Popen(cmd, stdout = subprocess.PIPE, stderr = subprocess.STDOUT)
cmd_output = pipe.stdout.read()
if cmd_output and "DBGFileMappedPaths = " in cmd_output:
- print "Executing: '%s' =>" % ' '.join(cmd)
+ print "%s =>" % ' '.join(cmd)
print cmd_output
print "Disable automatic lookup and caching of dSYMs before running the test suite!"
print "Exiting..."
More information about the lldb-commits
mailing list