view tests/helpers.sh @ 10918:1d8a13bb42ae

add +x to test-update-renames, removed by the merge on 24ed7a541f23
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
date Thu, 15 Apr 2010 15:34:27 +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/"; }