tests/test-bisect
author Emanuele Aina <em@nerd.ocracy.org>
Fri, 11 May 2007 17:05:44 +0200
changeset 4462 a73cf208b2a0
parent 2976 61fcd9fac434
permissions -rwxr-xr-x
purge: add --include and --exclude options

#!/bin/sh

set -e

echo "[extensions]" >> $HGRCPATH
echo "hbisect=" >> $HGRCPATH

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=`expr $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