view tools/verify-all-heads.sh @ 861:6fc7f74f0cf6

stupid: force non-incremental mode for unrelated branches creation Apparently, svn < 1.7 was already taking this path since it could not diff unrelated branches. svn >= 1.7 learnt to do that but supporting it in the regular stupid mode needs some work. Be lazy for now.
author Patrick Mezard <patrick@mezard.eu>
date Thu, 19 Apr 2012 15:08:07 +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