Mercurial > public > mercurial-scm > hg
annotate tests/helpers.sh @ 10774:0065e6b42a25
tests: add helpers.sh
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Mon, 29 Mar 2010 12:56:16 -0500 |
parents | |
children | b345b1cc124f |
rev | line source |
---|---|
10774 | 1 #/bin/sh |
2 | |
3 hideport() { sed "s/localhost:$HGPORT/localhost:\$HGPORT/"; } | |
4 | |
5 repr() { python -c "import sys; print repr(sys.stdin.read()).replace('\\n', '\n')" } | |
6 | |
7 hidehex() { python -c 'import sys, re; print re.replace("\b[0-9A-Fa-f]{12,40}", "X" * 12)' } | |
8 | |
9 hidetmp() { sed "s/$HGTMP/\$HGTMP/"; } |