Mercurial > hg
view tests/test-bisect @ 5527:0b3f910dfd17
mq: really remove undo after a qpush (and after a strip)
For qpush, removeundo has to be called after the transaction has finished.
strip may use unbundle, which also leaves an undo file.
Fixes issue780.
author | Alexis S. L. Carvalho <alexis@cecm.usp.br> |
---|---|
date | Fri, 09 Nov 2007 20:21:35 -0200 |
parents | 61fcd9fac434 |
children | 9079081b8982 |
line wrap: on
line source
#!/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