view tests/helpers.sh @ 10969:ca052b484e56

context: remove parents parameter to workingctx it was needed before the refactor of commit, workingctx always uses the dirstate now.
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
date Wed, 21 Apr 2010 01:18:31 +0200
parents 0065e6b42a25
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/"; }