# HG changeset patch # User Augie Fackler # Date 1237263540 18000 # Node ID b81e7f2f7818ddc21efa092f09647483f599f528 # Parent d06572495c5ef39e18c831f4874ceb3d5ec5a1af Add a shell script to verify the conversion result for all heads in a multi-branch repo. diff --git a/tools/verify-all-heads.sh b/tools/verify-all-heads.sh new file mode 100755 --- /dev/null +++ b/tools/verify-all-heads.sh @@ -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