view tools/verify-all-heads.sh @ 1337:0f1f88e71138 stable

tests: leave from the directory before removing On Windows, we need to leave from the direcotry before removing it, otherwise error 32 (ERROR_SHARING_VIOLATION).
author Shun-ichi Goto <shunichi.goto@gmail.com>
date Thu, 14 May 2015 13:49:52 +0900
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