Minor change for output message (less is better).

llvm-svn: 139924
This commit is contained in:
Johnny Chen 2011-09-16 18:09:45 +00:00
parent 5d1d50b8f7
commit 9846019114
1 changed files with 1 additions and 1 deletions

View File

@ -800,7 +800,7 @@ def checkDsymForUUIDIsNotOn():
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..."