##// END OF EJS Templates
tests: remove redundant globs...
tests: remove redundant globs Many globs now just match $TESTTMP and is no longer needed.

File last commit:

r11200:12e5149c default
r12640:6cc4b14f default
Show More
helpers.sh
17 lines | 531 B | application/x-sh | BashLexer
#/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/';
}