Mercurial > hg
changeset 10774:0065e6b42a25
tests: add helpers.sh
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Mon, 29 Mar 2010 12:56:16 -0500 |
parents | bd36e5c0ccb1 |
children | 071da7caac22 |
files | tests/helpers.sh |
diffstat | 1 files changed, 9 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/helpers.sh Mon Mar 29 12:56:16 2010 -0500 @@ -0,0 +1,9 @@ +#/bin/sh + +hideport() { sed "s/localhost:$HGPORT/localhost:\$HGPORT/"; } + +repr() { python -c "import sys; print repr(sys.stdin.read()).replace('\\n', '\n')" } + +hidehex() { python -c 'import sys, re; print re.replace("\b[0-9A-Fa-f]{12,40}", "X" * 12)' } + +hidetmp() { sed "s/$HGTMP/\$HGTMP/"; } \ No newline at end of file