tests/test-bisect
author Matt Mackall <mpm@selenic.com>
Sun, 20 Aug 2006 23:52:52 -0500
changeset 2974 eef469259745
parent 2932 d77022db1bca
child 2976 61fcd9fac434
permissions -rwxr-xr-x
tag: shorten hash in default commit message Move default message to commands.py Pass node in binary for consistency Remove default arguments Fix up tests

#!/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=`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