# HG changeset patch # User Dirkjan Ochtman # Date 1244569693 -7200 # Node ID 11c4c7242a36d229a45be483555755d29e62fd17 # Parent 636e9bf5d49c212d1d8c816d3bf2cb0d050b533a tools: use new svn verify command instead of svn export incantations diff --git a/tools/bisect-find-bad.sh b/tools/bisect-find-bad.sh --- a/tools/bisect-find-bad.sh +++ b/tools/bisect-find-bad.sh @@ -1,4 +1,4 @@ #!/bin/bash . $(dirname $0)/common.sh -verify_current_revision $1 +hg svn verify exit $? diff --git a/tools/verify-all-heads.sh b/tools/verify-all-heads.sh --- a/tools/verify-all-heads.sh +++ b/tools/verify-all-heads.sh @@ -1,10 +1,8 @@ #!/bin/sh . $(dirname $0)/common.sh -for b in `hg branches -a | cut -f 1 -d ' ' | grep -v closed-branches` ; do +for b in `hg branches -aq` ; do hg co $b || break - echo Verifying $b - verify_current_revision keep > /dev/null && \ - echo $b verified. || \ - (echo $b failed. && /bin/rm -rf * && hg up -C $b) + echo verifying $b + hg svn verify done