view tools/verify-all-heads.sh @ 1245:260212f056b7

test_util: fix up i18n monkeypatch for Mercurial 3.2 Mercurial rev 0d0350cfc7ab changed the API a bit.
author Siddharth Agarwal <sid0@fb.com>
date Tue, 14 Oct 2014 18:12:24 -0400
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