Mercurial > evolve
view tests/testlib/pythonpath.sh @ 3361:1439021d22f9 stable
tests: add a test showing wrong behaviour doing `hg prev` on orphan cset
If there is an unstable changeset in the topic stack, whose parent is not a
part of stack but has a successor which is part of stack, hg stack does shows
them in linear order, but `hg prev` on that orphan changset says no parent on
that topic. However it should update to the successor of the changeset.
It will be fixed in the next patch.
author | Pulkit Goyal <7895pulkit@gmail.com> |
---|---|
date | Thu, 28 Dec 2017 03:08:22 +0530 |
parents | 994d81caec68 |
children | 9980df8eda98 |
line wrap: on
line source
# utility to setup pythonpath to point into the tested repository export SRCDIR=`dirname $TESTDIR` if [ -n "$PYTHONPATH" ]; then export HGTEST_ORIG_PYTHONPATH=$PYTHONPATH export PYTHONPATH=$SRCDIR:$PYTHONPATH else export PYTHONPATH=$SRCDIR fi