##// END OF EJS Templates
tests: ignore slash direction in paths in test-notify-changegroup.t...
tests: ignore slash direction in paths in test-notify-changegroup.t Fixes testing on windows after 2a7fa7c641d8.

File last commit:

r13141:6cfe17c1 default
r15766:8e185480 default
Show More
filtercr.py
10 lines | 237 B | text/x-python | PythonLexer
Martin Geisler
tests: add filtercr.py helper for progress tests...
r13141 #!/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