view tools/verify-all-heads.sh @ 954:1f77bd6ec0e5

test_fetch_mappings: reduce copy/paste
author Patrick Mezard <patrick@mezard.eu>
date Sun, 07 Oct 2012 20:34:04 +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