view tools/verify-all-heads.sh @ 211:05243ec295e1

fetch: Fix a bug that caused plaintexts to be interpreted as missing more often than they should be. Also refactored a large part of hg_delta_editor to make it carry slightly less state around.
author Augie Fackler <durin42@gmail.com>
date Mon, 16 Mar 2009 23:19:00 -0500
parents b81e7f2f7818
children b1d2ea765516
line wrap: on
line source

#!/bin/sh
for b in `hg branches | cut -f 1 -d ' '` ; do
    hg co $b || break
    echo Verifying $b
    $(dirname $0)/bisect-find-bad.sh > /dev/null || break
    echo $b Verified.
done