Mercurial > public > mercurial-scm > hg
view 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 |
line wrap: on
line source
#/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/"; }