view tools/verify-all-heads.sh @ 1334:9a78a6524f9d stable

native revs: Match changes in core to fix native revs Core changed the definition of stringset, it broke native revset. This patch fixes it.
author Laurent Charignon <lcharignon@fb.com>
date Tue, 12 May 2015 11:36:44 -0700
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