Add a shell script to verify the conversion result for all heads in a multi-branch repo.

This commit is contained in:
Augie Fackler 2009-03-16 23:19:00 -05:00
parent 328dd3a7e6
commit 76e9c35106

7
tools/verify-all-heads.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/sh
for b in `hg branches | cut -f 1 -d ' '` ; do
hg co $b || break
echo Verifying $b
$(dirname $0)/bisect-find-bad.sh > /dev/null || break
echo $b Verified.
done