view tools/verify-all-heads.sh @ 1577:af9a3156f8ae

test: prefill more early options Mercurial 4.7 process more option earlier. We have to update the test to take than in account.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Thu, 26 Jul 2018 16:25:41 +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