view tools/verify-all-heads.sh @ 1425:56a872cba351

wrappers: remove an unused line The "origrevcount" variable is not used and adds a cost calculating "len(meta.revmap)", therefore removed.
author Jun Wu <quark@fb.com>
date Thu, 26 May 2016 23:11:41 +0100
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