##// END OF EJS Templates
show extensions loaded on traceback
show extensions loaded on traceback

File last commit:

r6983:5ce62598 default
r6985:5cf3bf3c default
Show More
test-bisect
73 lines | 1.0 KiB | text/plain | TextLexer
Giorgos Keramidas
tests: new test for the bisect extension
r2924 #!/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
Danek Duvall
Solaris portability fixes
r2932 count=`expr $count + 1`
Giorgos Keramidas
tests: new test for the bisect extension
r2924 done
echo % log
hg log
echo % hg up -C
hg up -C
echo % bisect test
Matt Mackall
bisect: use more standard command syntax and help
r5735 hg bisect -r
hg bisect -b
hg bisect -g 1
hg bisect -g
Matt Mackall
bisect: improve tests...
r5777 echo skip
hg bisect -s
Matt Mackall
bisect: use more standard command syntax and help
r5735 hg bisect -g
hg bisect -g
hg bisect -b
hg bisect -g
Matt Mackall
bisect: handle search for bad to good transitions...
r5776
echo % bisect reverse test
hg bisect -r
hg bisect -b null
hg bisect -g tip
hg bisect -g
Matt Mackall
bisect: improve tests...
r5777 echo skip
hg bisect -s
Matt Mackall
bisect: handle search for bad to good transitions...
r5776 hg bisect -g
hg bisect -g
hg bisect -b
hg bisect -g
Matt Mackall
bisect: improve tests...
r5777
hg bisect -r
hg bisect -g tip
hg bisect -b tip || echo error
hg bisect -r
hg bisect -g null
hg bisect -bU tip
Bernhard Leiner
add additional bisect tests
r6860 hg id
Dirkjan Ochtman
bisect: status message when no action is specified
r6929 echo % test no action message
hg bisect
Bernhard Leiner
add additional bisect tests
r6860 # 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