tests/test-bisect
author Dirkjan Ochtman <dirkjan@ochtman.nl>
Thu, 21 Aug 2008 19:02:56 +0200
changeset 6929 1b15d6e7cc3c
parent 6860 6d904eb19c2a
child 6983 5ce625983208
permissions -rwxr-xr-x
bisect: status message when no action is specified

#!/bin/sh

set -e

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 -r
hg bisect -b
hg bisect -g 1
hg bisect -g
echo skip
hg bisect -s
hg bisect -g
hg bisect -g
hg bisect -b
hg bisect -g

echo % bisect reverse test
hg bisect -r
hg bisect -b null
hg bisect -g tip
hg bisect -g
echo skip
hg bisect -s
hg bisect -g
hg bisect -g
hg bisect -b
hg bisect -g

hg bisect -r
hg bisect -g tip
hg bisect -b tip || echo error

hg bisect -r
hg bisect -g null
hg bisect -bU tip
hg id

echo % test no action message
hg bisect

# reproduce AssertionError (issue1228 and issue1182)
hg bisect -r
hg bisect -b 4
hg bisect -g 0
hg bisect -s
hg bisect -s
hg bisect -s

# reproduce non converging bisect (issue1182)
hg bisect -r
hg bisect -g 0
hg bisect -b 2
hg bisect -s