tests/helpers.sh
branchstable
changeset 12795 3cb0559e44d0
parent 12793 469850088fc1
parent 12794 6bf8d48bec8e
child 12796 bc69ba99e34b
--- a/tests/helpers.sh	Wed Oct 20 23:39:48 2010 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-#/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/"; }
-
-hidebackup() { sed 's/\(saved backup bundle to \).*/\1/'; }
-
-cleanrebase() {
-    sed -e 's/\(Rebase status stored to\).*/\1/'  \
-        -e 's/\(Rebase status restored from\).*/\1/' \
-        -e 's/\(saved backup bundle to \).*/\1/';
-}