tests/bzr-definitions
author Lucas Moscovicz <lmoscovicz@fb.com>
Fri, 14 Mar 2014 10:23:54 -0700
changeset 20732 728438da3090
parent 20117 aa9385f983fa
child 26066 89872688893f
permissions -rw-r--r--
revset: added __add__ method to _addset This method is intended to duck-type baseset, so we will still have _addset as a private class but we will be able to 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
}