comparison tools/verify-all-heads.sh @ 213:b1d2ea765516

tools: refactor stuff into common.sh, make verify-all-heads not revert.
author Augie Fackler <durin42@gmail.com>
date Fri, 20 Mar 2009 10:18:34 -0500
parents b81e7f2f7818
children 3c87de482011
comparison
equal deleted inserted replaced
212:a421aca2b0f5 213:b1d2ea765516
1 #!/bin/sh 1 #!/bin/sh
2 . $(dirname $0)/common.sh
3
2 for b in `hg branches | cut -f 1 -d ' '` ; do 4 for b in `hg branches | cut -f 1 -d ' '` ; 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