view tools/verify-all-heads.sh @ 696:c11bf0dd38d3

tests: enable hgsubversion in the generated UI. This allows testing hgsubversion using Mercurial's dispatch logic.
author Dan Villiom Podlaski Christiansen <danchr@gmail.com>
date Mon, 20 Sep 2010 17:08:18 +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