comparison tools/verify-all-heads.sh @ 210:b81e7f2f7818

Add a shell script to verify the conversion result for all heads in a multi-branch repo.
author Augie Fackler <durin42@gmail.com>
date Mon, 16 Mar 2009 23:19:00 -0500
parents
children b1d2ea765516
comparison
equal deleted inserted replaced
209:d06572495c5e 210:b81e7f2f7818
1 #!/bin/sh
2 for b in `hg branches | cut -f 1 -d ' '` ; do
3 hg co $b || break
4 echo Verifying $b
5 $(dirname $0)/bisect-find-bad.sh > /dev/null || break
6 echo $b Verified.
7 done