view tools/verify-all-heads.sh @ 586:704d2ce1d906

editor: fix open_file() on replaced branch The mercurial parent revision was the replacing branch revision not the replaced one.
author Patrick Mezard <pmezard@gmail.com>
date Tue, 02 Mar 2010 17:06:06 +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