diff options
author | Leon Woestenberg <leon@sidebranch.com> | 2009-04-24 21:33:06 +0200 |
---|---|---|
committer | Leon Woestenberg <leon@sidebranch.com> | 2009-04-24 21:34:09 +0200 |
commit | 77ac27793af7350b137ca3472b3907ef1c58323b (patch) | |
tree | 0127beddd30e911e260e25250ba5a791af894f68 /contrib | |
parent | fce876f33d514633db77bfeba1a5e1b39f40c550 (diff) |
contrib/mtn-bisect.sh: Removed, we moved to git which has bisect itself.
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/mtn-bisect.sh | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/contrib/mtn-bisect.sh b/contrib/mtn-bisect.sh deleted file mode 100755 index e1c970d974..0000000000 --- a/contrib/mtn-bisect.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/bash - -# the revision that we noticed does not longer build -LATEST_BAD_REV=$1 - -# an older revision that is known to build -LAST_KNOWN_GOOD_REV=$2 - -# count the number of commits -COUNT=`mtn log --brief --no-merges --no-graph --to p:$LAST_KNOWN_GOOD_REV --from $LATEST_BAD_REV | tee /tmp/candidates.txt | wc -l` - -echo $COUNT commits - -# if COUNT == 1 stop - -# make binary sections -COUNT=$(($(($COUNT + 1)) / 2)) - -CANDIDATE_REV=`cat /tmp/candidates.txt | head -n $COUNT | tail -n 1 | sed -e 's@\([a-f0-9]*\) .*@\1@'` - -echo $CANDIDATE_REV - -echo mtn up -r $CANDIDATE_REV -mtn up -r $CANDIDATE_REV - - |