tests/testlib/common.sh
author Pierre-Yves David <pierre-yves.david@octobus.net>
Sun, 10 Dec 2017 00:20:06 +0100
changeset 3253 8dcb9e929a57
parent 2119 e1c26c632b6d
permissions -rw-r--r--
stablerange: fallback to a more naive approach to find subrange As suspected, using "bheads" was bit good enough in some case and we have to fall back to the approach used in "basic". On the evolve repo (about 3K changeset) this approach is about 60% slower than the previous (wrong) code.

. $TESTDIR/testlib/pythonpath.sh

mkcommit() {
   echo "$1" > "$1"
   hg add "$1"
   hg ci -m "$1"
}

getid() {
   hg log --hidden --template '{node}\n' --rev "$1"
}

cat >> $HGRCPATH <<EOF
[alias]
debugobsolete=debugobsolete -d '0 0'
EOF