view tools/verify-all-heads.sh @ 1253:c54214bb6c4e

maps: avoid O(n) property lookups on the node module The particular improvement we're interested in here is with loading the revmap. Loading a million-entry revmap goes from 3.82 seconds to 3.72.
author Siddharth Agarwal <sid0@fb.com>
date Sun, 02 Nov 2014 01:27:38 -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