view tools/verify-all-heads.sh @ 459:7151f63ab33c

tags: fix a bug triggered by copies from non-branch-roots I have not included a test case because I can't iron out the specifics of what causes this bug. This allows jquery to finish cloning successfully. Further inspection of the jquery history around 4400:4410 should allow construction of a meaningful test case.
author Augie Fackler <durin42@gmail.com>
date Sun, 05 Jul 2009 22:01:38 -0500
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