view tools/verify-all-heads.sh @ 834:27a2136e89cd

test_push_command: tests -> all_tests for consistency with other files
author Yonggang Luo <luoyonggang@gmail.com>
date Wed, 12 Oct 2011 15:50:47 +0800
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