view tools/verify-all-heads.sh @ 212:a421aca2b0f5

info: produce canonical URLs more of the time.
author Augie Fackler <durin42@gmail.com>
date Tue, 17 Mar 2009 15:11:03 -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