tests/test-bisect
author Vadim Gelfer <vadim.gelfer@gmail.com>
Wed, 16 Aug 2006 10:53:01 -0700
changeset 2925 14b4ad613dd8
parent 2924 d62ce27d925a
child 2932 d77022db1bca
permissions -rwxr-xr-x
make new tests executable.

#!/bin/sh

set -e

HGRCPATH=$HGTMP/.hgrc; export HGRCPATH
echo "[extensions]" >> $HGTMP/.hgrc
echo "hbisect=" >> $HGTMP/.hgrc

echo % init
hg init

echo % committing changes
count=0
echo > a
while test $count -lt 32 ; do
    echo 'a' >> a
    test $count -eq 0 && hg add
    hg ci -m "msg $count" -d "$count 0"
    echo % committed changeset $count
    count=$(( $count + 1 ))
done

echo % log
hg log

echo % hg up -C
hg up -C

echo % bisect test
hg bisect init
hg bisect bad
hg bisect good 1
hg bisect good
hg bisect good
hg bisect good
hg bisect bad
hg bisect good