view tools/verify-all-heads.sh @ 632:eea224fa1156

svnmeta: improve error message in get_source_rev() Letting a KeyError propagate when the supplied revision has no conversion record on file isn't terribly helpful. At least not when this KeyError merely states that the key missing is 'convert_revision'. It's much better to preemptively check for it, detect that it's missing, and then raise an exception with a descriptive message.
author Dan Villiom Podlaski Christiansen <danchr@gmail.com>
date Thu, 08 Jul 2010 21:53:59 +0200
parents 11c4c7242a36
children
line wrap: on
line source

#!/bin/sh
. $(dirname $0)/common.sh

for b in `hg branches -aq` ; do
    hg co $b || break
    echo verifying $b
    hg svn verify
done