view tools/verify-all-heads.sh @ 965:b748a0eed09a

svnwrap: Refactor the svn_auth_ssl_server_trust_prompt to add other handler - Since there are five handler, change to SubversionPrompt class from svn_auth_ssl_server_trust_prompt(). - Moved out of the handler to check the callback function is non-None.
author Mitsuhiro Koga <shiena.jp@gmail.com>
date Wed, 24 Oct 2012 02:19:15 +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