Mercurial > hg
view tests/test-bisect @ 6714:5f339b6a7eff
merge with crew
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Wed, 18 Jun 2008 23:45:49 +0200 |
parents | 51776e50bc8c |
children | 6d904eb19c2a |
line wrap: on
line source
#!/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