view tests/helpers.sh @ 10920:39c69b5dc258

localrepo: simplify _updatebranchcache slightly
author Sune Foldager <cryo@cyanite.org>
date Thu, 15 Apr 2010 17:25:37 +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/"; }