comparison tools/verify-all-heads.sh @ 304:ce676eff002b

First merge, totally untested.
author Dan Villiom Podlaski Christiansen <danchr@gmail.com>
date Fri, 01 May 2009 10:28:59 +0200
parents 3c87de482011
children 5071b8511572
comparison
equal deleted inserted replaced
303:f423a8780832 304:ce676eff002b
1 #!/bin/sh 1 #!/bin/sh
2 for b in `hg branches | cut -f 1 -d ' '` ; do 2 . $(dirname $0)/common.sh
3
4 for b in `hg branches -a | cut -f 1 -d ' ' | grep -v closed-branches` ; do
3 hg co $b || break 5 hg co $b || break
4 echo Verifying $b 6 echo Verifying $b
5 $(dirname $0)/bisect-find-bad.sh > /dev/null || break 7 verify_current_revision keep > /dev/null || break
6 echo $b Verified. 8 echo $b Verified.
7 done 9 done