tests/filtercr.py
author Bryan O'Sullivan <bryano@fb.com>
Wed, 02 May 2012 17:15:11 -0700
branchstable
changeset 16593 e462313ef1bd
parent 13141 6cfe17c19ba2
permissions -rwxr-xr-x
bisect: save current state before running a command This prevents an external command being run during a bisect from querying stale data.

#!/usr/bin/env python

# Filter output by the progress extension to make it readable in tests

import sys, re

for line in sys.stdin:
    line = re.sub(r'\r+[^\n]', lambda m: '\n' + m.group()[-1:], line)
    sys.stdout.write(line)
print