tests/testlib/common.sh
author Anton Shestakov <av6@dwimlabs.net>
Fri, 06 Sep 2019 12:16:34 +0700
branchstable
changeset 4828 aaf8742e09a0
parent 2119 e1c26c632b6d
permissions -rw-r--r--
stack: demonstrate that not reusing cached property gives different results Instead of using self._dependencies, which is a cached property, let's get fresh deps and rdeps in stack.revs method using a newly introduced stack.builddependencies method (will be removed in the next patch). This makes it easier to explain why the next patch is correct.

. $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