tests/bzr-definitions
author Lucas Moscovicz <lmoscovicz@fb.com>
Fri, 14 Mar 2014 10:21:56 -0700
changeset 20729 caa69cb223b0
parent 20117 aa9385f983fa
child 26066 89872688893f
permissions -rw-r--r--
revset: added ascending and descending methods to _addset This methods are intended to duck-type baseset, so we will still have _addset as a private class but will be able return it without wrapping it into an orderedlazyset or a lazyset.

# this file holds the definitions that are used in various bzr tests

"$TESTDIR/hghave" bzr || exit 80

TERM=dumb; export TERM
echo '[extensions]' >> $HGRCPATH
echo 'convert = ' >> $HGRCPATH

glog()
{
    hg log -G --template '{rev}@{branch} "{desc|firstline}" files: {files}\n' "$@"
}

manifest()
{
    echo "% manifest of $2"
    hg -R $1 manifest -v -r $2
}