|
@ -235,9 +235,9 @@ class TapProgressIndicator(SimpleProgressIndicator): |
|
|
command = basename(output.command[1]) |
|
|
command = basename(output.command[1]) |
|
|
if output.UnexpectedOutput(): |
|
|
if output.UnexpectedOutput(): |
|
|
print 'not ok %i - %s' % (self._done, command) |
|
|
print 'not ok %i - %s' % (self._done, command) |
|
|
for l in output.output.stderr.split(os.linesep): |
|
|
for l in output.output.stderr.splitlines(): |
|
|
print '#' + l |
|
|
print '#' + l |
|
|
for l in output.output.stdout.split(os.linesep): |
|
|
for l in output.output.stdout.splitlines(): |
|
|
print '#' + l |
|
|
print '#' + l |
|
|
else: |
|
|
else: |
|
|
print 'ok %i - %s' % (self._done, command) |
|
|
print 'ok %i - %s' % (self._done, command) |
|
|