# HG changeset patch # User Matt Mackall # Date 1269885376 18000 # Node ID 0065e6b42a25804bf5a6624a736351096b04c284 # Parent bd36e5c0ccb110c11bf0bda72ea77171d6844f18 tests: add helpers.sh diff -r bd36e5c0ccb1 -r 0065e6b42a25 tests/helpers.sh --- /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