comparison tests/helpers.sh @ 11198:b345b1cc124f

rebase: use helpers.sh in tests
author Matt Mackall <mpm@selenic.com>
date Wed, 19 May 2010 20:20:12 -0500
parents 0065e6b42a25
children 12e5149cafca
comparison
equal deleted inserted replaced
11197:4bb4895e1693 11198:b345b1cc124f
1 #/bin/sh 1 #/bin/sh
2 2
3 hideport() { sed "s/localhost:$HGPORT/localhost:\$HGPORT/"; } 3 hideport() { sed "s/localhost:$HGPORT/localhost:\$HGPORT/"; }
4 4
5 repr() { python -c "import sys; print repr(sys.stdin.read()).replace('\\n', '\n')" } 5 repr() { python -c "import sys; print repr(sys.stdin.read()).replace('\\n', '\n')"; }
6 6
7 hidehex() { python -c 'import sys, re; print re.replace("\b[0-9A-Fa-f]{12,40}", "X" * 12)' } 7 hidehex() { python -c 'import sys, re; print re.replace("\b[0-9A-Fa-f]{12,40}", "X" * 12)'; }
8 8
9 hidetmp() { sed "s/$HGTMP/\$HGTMP/"; } 9 hidetmp() { sed "s/$HGTMP/\$HGTMP/"; }
10
11 hidebackup() { sed 's/\(saving bundle to \).*/\1/'; }
12
13 cleanrebase() {
14 sed -e 's/\(Rebase status stored to\).*/\1/' \
15 -e 's/\(Rebase status restored from\).*/\1/' \
16 -e 's/\(saving bundle to \).*/\1/';
17 }