Browse Source

Merge remote-tracking branch 'origin/v0.8'

v0.9.11-release
Ben Noordhuis 12 years ago
parent
commit
d019bec72d
  1. 4
      tools/test.py

4
tools/test.py

@ -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)

Loading…
Cancel
Save