| Index: tools/test.py
|
| diff --git a/tools/test.py b/tools/test.py
|
| index cbd76bd031d63ec77abe0a9b4135437673d589fe..30f0f349c69db1302a10464658f4abf35ef88e33 100755
|
| --- a/tools/test.py
|
| +++ b/tools/test.py
|
| @@ -222,13 +222,13 @@ class CompactProgressIndicator(ProgressIndicator):
|
| if output.UnexpectedOutput():
|
| self.ClearLine(self.last_status_length)
|
| self.PrintFailureHeader(output.test)
|
| - print "Command: %s" % EscapeCommand(output.command)
|
| stdout = output.output.stdout.strip()
|
| if len(stdout):
|
| print self.templates['stdout'] % stdout
|
| stderr = output.output.stderr.strip()
|
| if len(stderr):
|
| print self.templates['stderr'] % stderr
|
| + print "Command: %s" % EscapeCommand(output.command)
|
|
|
| def Truncate(self, str, length):
|
| if length and (len(str) > (length - 3)):
|
|
|